diff options
Diffstat (limited to 'libguile/read.c')
-rw-r--r-- | libguile/read.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libguile/read.c b/libguile/read.c index e17735ed0..ee8786133 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -70,12 +70,10 @@ scm_t_option scm_read_opts[] = { "Convert symbols to lower case."}, { SCM_OPTION_SCM, "keywords", (unsigned long) SCM_BOOL_F, "Style of keyword recognition: #f, 'prefix or 'postfix."}, -#if SCM_ENABLE_ELISP { SCM_OPTION_BOOLEAN, "elisp-vectors", 0, "Support Elisp vector syntax, namely `[...]'."}, { SCM_OPTION_BOOLEAN, "elisp-strings", 0, "Support `\\(' and `\\)' in strings."}, -#endif { SCM_OPTION_BOOLEAN, "r6rs-hex-escapes", 0, "Use R6RS variable-length character and string hex escapes."}, { SCM_OPTION_BOOLEAN, "square-brackets", 1, @@ -509,13 +507,11 @@ scm_read_string (int chr, SCM port) case '"': case '\\': break; -#if SCM_ENABLE_ELISP case '(': case ')': if (SCM_ESCAPED_PARENS_P) break; goto bad_escaped; -#endif case '\n': continue; case '0': |