diff options
| -rw-r--r-- | lispref/streams.texi | 16 |
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 | |||
| 787 | uninterned symbols print with the prefix @samp{#:}, which tells the Lisp | 787 | uninterned symbols print with the prefix @samp{#:}, which tells the Lisp |
| 788 | reader to produce an uninterned symbol. | 788 | reader to produce an uninterned symbol. |
| 789 | @end defvar | 789 | @end defvar |
| 790 | |||
| 791 | @defvar print-continuous-numbering | ||
| 792 | If non-@code{nil}, that means number continuously across print calls. | ||
| 793 | This affects the numbers printed for @samp{#@var{n}=} labels and | ||
| 794 | @samp{#@var{m}#} references. | ||
| 795 | |||
| 796 | Don't set this variable with @code{setq}; you should only bind it | ||
| 797 | temporarily to @code{t} with @code{let}. When you do that, you should | ||
| 798 | also bind @code{print-number-table} to @code{nil}. | ||
| 799 | @end defvar | ||
| 800 | |||
| 801 | @defvar print-number-table | ||
| 802 | This variable holds a vector used internally by printing to implement | ||
| 803 | the @code{print-circle} feature. You should not use it except | ||
| 804 | to bind it to @code{nil} when you bind @code{print-continuous-numbering}. | ||
| 805 | @end defvar | ||