diff options
| author | Richard M. Stallman | 2003-07-22 15:20:31 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-07-22 15:20:31 +0000 |
| commit | 58c962913ea6de58516187f964f6d9d5eee4e044 (patch) | |
| tree | 1e372751a6400655e71cf45e6919f2d04c3f09ef | |
| parent | 591a3500e9e13128aaa81698a88ecb865492d4ad (diff) | |
| download | emacs-58c962913ea6de58516187f964f6d9d5eee4e044.tar.gz emacs-58c962913ea6de58516187f964f6d9d5eee4e044.zip | |
(Output Variables): Add print-continuous-numbering and print-number-table.
| -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 | ||