aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-07-22 15:20:31 +0000
committerRichard M. Stallman2003-07-22 15:20:31 +0000
commit58c962913ea6de58516187f964f6d9d5eee4e044 (patch)
tree1e372751a6400655e71cf45e6919f2d04c3f09ef
parent591a3500e9e13128aaa81698a88ecb865492d4ad (diff)
downloademacs-58c962913ea6de58516187f964f6d9d5eee4e044.tar.gz
emacs-58c962913ea6de58516187f964f6d9d5eee4e044.zip
(Output Variables): Add print-continuous-numbering and print-number-table.
-rw-r--r--lispref/streams.texi16
1 files changed, 16 insertions, 0 deletions
diff --git a/lispref/streams.texi b/lispref/streams.texi
index bddc65a6423..bcddb742212 100644
--- a/lispref/streams.texi
+++ b/lispref/streams.texi
@@ -787,3 +787,19 @@ If non-@code{nil}, this variable enables detection of uninterned symbols
787uninterned symbols print with the prefix @samp{#:}, which tells the Lisp 787uninterned symbols print with the prefix @samp{#:}, which tells the Lisp
788reader to produce an uninterned symbol. 788reader to produce an uninterned symbol.
789@end defvar 789@end defvar
790
791@defvar print-continuous-numbering
792If non-@code{nil}, that means number continuously across print calls.
793This affects the numbers printed for @samp{#@var{n}=} labels and
794@samp{#@var{m}#} references.
795
796Don't set this variable with @code{setq}; you should only bind it
797temporarily to @code{t} with @code{let}. When you do that, you should
798also bind @code{print-number-table} to @code{nil}.
799@end defvar
800
801@defvar print-number-table
802This variable holds a vector used internally by printing to implement
803the @code{print-circle} feature. You should not use it except
804to bind it to @code{nil} when you bind @code{print-continuous-numbering}.
805@end defvar