summaryrefslogtreecommitdiffstats
path: root/stream.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-05-18 21:22:32 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-05-18 21:22:32 -0700
commitc3700b0be6c78154e811a3225128efec098efcaf (patch)
treef16781e33cf92a3a9672ab3035afadd752cd0c17 /stream.h
parent246887dce1d8d09ec2a5af5f019613ac064e779c (diff)
downloadtxr-c3700b0be6c78154e811a3225128efec098efcaf.tar.gz
txr-c3700b0be6c78154e811a3225128efec098efcaf.tar.bz2
txr-c3700b0be6c78154e811a3225128efec098efcaf.zip
* eval.c (eval_init): Registered open-command and open-process
intrinsics. open-pipe is now deprecated but stays for backward compatibility as a synonym for open-command. * stream.c (open_pipe): Renamed to open_command. (open_pipevp): Renamed to open_process. * stream.h (open_pipe, open_pipevp): Declarations updated. * txr.1: Documentation headings updated.
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream.h b/stream.h
index 06862594..38b10eda 100644
--- a/stream.h
+++ b/stream.h
@@ -52,7 +52,7 @@ val put_byte(val byte, val stream);
val flush_stream(val stream);
val open_directory(val path);
val open_file(val path, val mode_str);
-val open_pipe(val path, val mode_str);
-val open_pipevp(val path, val mode_str, val args);
+val open_command(val path, val mode_str);
+val open_process(val path, val mode_str, val args);
void stream_init(void);