diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-05-18 21:22:32 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-05-18 21:22:32 -0700 |
commit | c3700b0be6c78154e811a3225128efec098efcaf (patch) | |
tree | f16781e33cf92a3a9672ab3035afadd752cd0c17 /stream.h | |
parent | 246887dce1d8d09ec2a5af5f019613ac064e779c (diff) | |
download | txr-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |