aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-02-17 01:10:15 +0000
committerRichard M. Stallman2004-02-17 01:10:15 +0000
commit0fa0135a64795d4742aec56ca38e8b0818be00e8 (patch)
tree9a15a1a311b5c57e0fa8fe64a447cc3b9303cebb
parent360f2e91407e3c10f497871ebdc596fa84cbc0ec (diff)
downloademacs-0fa0135a64795d4742aec56ca38e8b0818be00e8.tar.gz
emacs-0fa0135a64795d4742aec56ca38e8b0818be00e8.zip
(Output Variables): Add print-quoted.
-rw-r--r--lispref/streams.texi7
1 files changed, 7 insertions, 0 deletions
diff --git a/lispref/streams.texi b/lispref/streams.texi
index b6f211116e6..a4e88b82f2e 100644
--- a/lispref/streams.texi
+++ b/lispref/streams.texi
@@ -687,6 +687,13 @@ The value of this variable is the default output stream---the stream
687that print functions use when the @var{stream} argument is @code{nil}. 687that print functions use when the @var{stream} argument is @code{nil}.
688@end defvar 688@end defvar
689 689
690@defvar print-quoted
691If this is non-@code{nil}, that means to print quoted forms using
692abbreviated reader syntax. @code{(quote foo)} prints as @code{'foo},
693@code{(function foo)} as @code{#'foo}, and backquoted forms print
694using modern backquote syntax.
695@end defvar
696
690@defvar print-escape-newlines 697@defvar print-escape-newlines
691@cindex @samp{\n} in print 698@cindex @samp{\n} in print
692@cindex escape characters 699@cindex escape characters