diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:05:23 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:05:23 +0000 |
commit | a1ec69163dd2e55e5d2b03a164513aa4a0d5943c (patch) | |
tree | 99489194c03fa41397c77e84b3f8660ffef1ed30 /libguile/fports.c | |
parent | fb764465068f84e3ab047c45792ffc3026e5505a (diff) | |
download | guile-a1ec69163dd2e55e5d2b03a164513aa4a0d5943c.tar.gz |
*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
Diffstat (limited to 'libguile/fports.c')
-rw-r--r-- | libguile/fports.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/fports.c b/libguile/fports.c index 6df715592..eaa297fe5 100644 --- a/libguile/fports.c +++ b/libguile/fports.c @@ -129,7 +129,7 @@ scm_fport_buffer_add (SCM port, int read_size, int write_size) SCM_SETCAR (port, (SCM_CAR (port) | SCM_BUF0)); } -GUILE_PROC (scm_setvbuf, "setvbuf", 2, 1, 0, +SCM_DEFINE (scm_setvbuf, "setvbuf", 2, 1, 0, (SCM port, SCM mode, SCM size), "Set the buffering mode for @var{port}. @var{mode} can be: @table @code @@ -255,7 +255,7 @@ scm_evict_ports (int fd) * * Return the new port. */ -GUILE_PROC(scm_open_file, "open-file", 2, 0, 0, +SCM_DEFINE(scm_open_file, "open-file", 2, 0, 0, (SCM filename, SCM modes), "Open the file whose name is @var{string}, and return a port representing that file. The attributes of the port are |