1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 13:00:26 +02:00

* read.c (scm_read_opts): Change `escaped-parens' to

`elisp-strings'.
This commit is contained in:
Neil Jerram 2004-02-10 19:44:10 +00:00
parent 2c284c947e
commit cd21f5eb17
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-02-10 Neil Jerram <neil@ossau.uklinux.net>
* read.c (scm_read_opts): Change `escaped-parens' to
`elisp-strings'.
2004-02-08 Neil Jerram <neil@ossau.uklinux.net>
* read.c (scm_read_opts): New opts `elisp-vectors' and

View file

@ -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
};