diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-08-23 01:20:34 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-08-23 01:20:34 +0000 |
commit | b7ff98ddd6c01e275066b1f6812c7dd83c1c5c6d (patch) | |
tree | 1411394a6ce582c941d2f16968c4c41516cb01fc /libguile/read.h | |
parent | fe90df5148912648f8ea5b7f1386d119077bc48e (diff) | |
download | guile-b7ff98ddd6c01e275066b1f6812c7dd83c1c5c6d.tar.gz |
* eval.c, print.h, print.c, read.h, read.c: Modifications to
run-time options.
Diffstat (limited to 'libguile/read.h')
-rw-r--r-- | libguile/read.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/read.h b/libguile/read.h index 193096484..326108e92 100644 --- a/libguile/read.h +++ b/libguile/read.h @@ -69,15 +69,15 @@ #ifdef READER_EXTENSIONS extern scm_option scm_read_opts[]; -#define RECORD_POSITIONS scm_read_opts[0].val -#define COPY_SOURCE scm_read_opts[1].val -#define N_READ_OPTIONS 2 +#define SCM_COPY_SOURCE_P scm_read_opts[0].val +#define SCM_RECORD_POSITIONS_P scm_read_opts[1].val +#define SCM_N_READ_OPTIONS 2 #endif #ifdef __STDC__ -extern SCM scm_read_options (SCM new_values); +extern SCM scm_read_options (SCM setting); extern SCM scm_read (SCM port, SCM casep, SCM sharp); extern char * scm_grow_tok_buf (SCM * tok_buf); extern int scm_flush_ws (SCM port, char *eoferr); |