diff options
author | Mark H Weaver <mhw@netris.org> | 2014-01-14 22:23:39 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-01-14 22:23:39 -0500 |
commit | c92ee2b38cb1ace800de081c9211120afea0c595 (patch) | |
tree | b36dc3fd52891ea5e53c94e22bb777f6e7d6e4f4 /doc/ref/api-evaluation.texi | |
parent | cb8aaef4d08989aea2b7f088d298f71a03ecc1b2 (diff) | |
parent | 6e504a7b44a9a25787bdfb2d86fdddd3029f4ba9 (diff) | |
download | guile-c92ee2b38cb1ace800de081c9211120afea0c595.tar.gz |
Merge branch 'stable-2.0'
Conflicts:
libguile/print.c
libguile/read.c
test-suite/tests/print.test
Diffstat (limited to 'doc/ref/api-evaluation.texi')
-rw-r--r-- | doc/ref/api-evaluation.texi | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi index 1810fe854..aa3729c1f 100644 --- a/doc/ref/api-evaluation.texi +++ b/doc/ref/api-evaluation.texi @@ -1,7 +1,7 @@ @c -*-texinfo-*- @c This is part of the GNU Guile Reference Manual. -@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, 2010, 2011, 2012, 2013 -@c Free Software Foundation, Inc. +@c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, +@c 2010, 2011, 2012, 2013, 2014 Free Software Foundation, Inc. @c See the file guile.texi for copying conditions. @node Read/Load/Eval/Compile @@ -340,6 +340,7 @@ square-brackets yes Treat `[' and `]' as parentheses, for R6RS compatibility hungry-eol-escapes no In strings, consume leading whitespace after an escaped end-of-line. curly-infix no Support SRFI-105 curly infix expressions. +r7rs-symbols no Support R7RS |...| symbol notation. @end smalllisp Note that Guile also includes a preliminary mechanism for setting read @@ -377,6 +378,9 @@ For example, to make @code{read} fold all symbols to their lower case For more information on the effect of the @code{r6rs-hex-escapes} and @code{hungry-eol-escapes} options, see (@pxref{String Syntax}). +For more information on the @code{r7rs-symbols} option, see +(@pxref{Symbol Read Syntax}). + @node Scheme Write @subsection Writing Scheme Values @@ -436,6 +440,8 @@ quote-keywordish-symbols reader How to print symbols that have a colon not '#f'. escape-newlines yes Render newlines as \n when printing using `write'. +r7rs-symbols no Escape symbols using R7RS |...| symbol + notation. @end smalllisp These options may be modified with the print-set! syntax. |