From cd21f5eb1784ccb6ffcb520b51deaae5ebc62245 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Tue, 10 Feb 2004 19:44:10 +0000 Subject: [PATCH] * read.c (scm_read_opts): Change `escaped-parens' to `elisp-strings'. --- libguile/ChangeLog | 5 +++++ libguile/read.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 0aa4f1ccd..c650a0d35 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,8 @@ +2004-02-10 Neil Jerram + + * read.c (scm_read_opts): Change `escaped-parens' to + `elisp-strings'. + 2004-02-08 Neil Jerram * read.c (scm_read_opts): New opts `elisp-vectors' and diff --git a/libguile/read.c b/libguile/read.c index dd37e8469..10e8d8264 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -56,7 +56,7 @@ scm_t_option scm_read_opts[] = { , { SCM_OPTION_BOOLEAN, "elisp-vectors", 0, "Support Elisp vector syntax, namely `[...]'."}, - { SCM_OPTION_BOOLEAN, "escaped-parens", 0, + { SCM_OPTION_BOOLEAN, "elisp-strings", 0, "Support `\\(' and `\\)' in strings."} #endif };