diff options
author | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:25:37 +0000 |
---|---|---|
committer | Greg J. Badros <gjb@cs.washington.edu> | 2000-01-05 19:25:37 +0000 |
commit | 3b3b36ddb7dfbd5094abee360c253c8f1216dcdd (patch) | |
tree | be6f18ee784818de032ac23e77470b67e260ffef /libguile/simpos.c | |
parent | cbaee92a8b6d8abba6bd236d089a7e6c3cf471b3 (diff) | |
download | guile-3b3b36ddb7dfbd5094abee360c253c8f1216dcdd.tar.gz |
* *.[ch]: Whitespace changes -- added space after SCM_VALIDATE_*
macros and SCM_DEFINE macros to match GNU coding standards.
Diffstat (limited to 'libguile/simpos.c')
-rw-r--r-- | libguile/simpos.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/simpos.c b/libguile/simpos.c index 064d7dfca..447a4d255 100644 --- a/libguile/simpos.c +++ b/libguile/simpos.c @@ -63,7 +63,7 @@ extern int system(); -SCM_DEFINE(scm_system, "system", 0, 1, 0, +SCM_DEFINE (scm_system, "system", 0, 1, 0, (SCM cmd), "Executes @var{cmd} using the operating system's "command processor". Under Unix this is usually the default shell @code{sh}. The value @@ -85,7 +85,7 @@ indicating whether the command processor is available.") #endif return SCM_BOOL(rv); } - SCM_VALIDATE_ROSTRING(1,cmd); + SCM_VALIDATE_ROSTRING (1,cmd); #ifdef HAVE_SYSTEM SCM_DEFER_INTS; errno = 0; @@ -112,7 +112,7 @@ returned.") #define FUNC_NAME s_scm_getenv { char *val; - SCM_VALIDATE_ROSTRING(1,nam); + SCM_VALIDATE_ROSTRING (1,nam); nam = scm_makfromstr (SCM_ROCHARS (nam), SCM_ROLENGTH (nam), 0); val = getenv(SCM_CHARS(nam)); return (val) ? scm_makfromstr(val, (scm_sizet)strlen(val), 0) : SCM_BOOL_F; @@ -130,7 +130,7 @@ is @var{status} if supplied, otherwise zero.") int cstatus = 0; if (!SCM_UNBNDP (status)) { - SCM_VALIDATE_INUM(1,status); + SCM_VALIDATE_INUM (1,status); cstatus = SCM_INUM (status); } exit (cstatus); |