diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/edebug.texi | 4 | ||||
| -rw-r--r-- | doc/lispref/streams.texi | 7 |
3 files changed, 9 insertions, 6 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 64a64dc8230..49fda5d5d32 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-05-05 Glenn Morris <rgm@gnu.org> | 1 | 2012-05-05 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * streams.texi (Output Variables): Improve page break. | ||
| 4 | |||
| 5 | * edebug.texi (Edebug Display Update): Improve page break. | ||
| 6 | |||
| 3 | * compile.texi (Disassembly): Condense the examples. | 7 | * compile.texi (Disassembly): Condense the examples. |
| 4 | 8 | ||
| 5 | * eval.texi, functions.texi, loading.texi, macros.texi: | 9 | * eval.texi, functions.texi, loading.texi, macros.texi: |
diff --git a/doc/lispref/edebug.texi b/doc/lispref/edebug.texi index 9d50f5fb31f..e97e90f947b 100644 --- a/doc/lispref/edebug.texi +++ b/doc/lispref/edebug.texi | |||
| @@ -975,8 +975,8 @@ unless @code{edebug-continue-kbd-macro} is non-@code{nil}. | |||
| 975 | @c needs an xref to be on just one line. | 975 | @c needs an xref to be on just one line. |
| 976 | When Edebug needs to display something (e.g., in trace mode), it saves | 976 | When Edebug needs to display something (e.g., in trace mode), it saves |
| 977 | the current window configuration from ``outside'' Edebug | 977 | the current window configuration from ``outside'' Edebug |
| 978 | (@pxref{Window Configurations}). When you exit Edebug (by continuing | 978 | (@pxref{Window Configurations}). When you exit Edebug, it restores |
| 979 | the program), it restores the previous window configuration. | 979 | the previous window configuration. |
| 980 | 980 | ||
| 981 | Emacs redisplays only when it pauses. Usually, when you continue | 981 | Emacs redisplays only when it pauses. Usually, when you continue |
| 982 | execution, the program re-enters Edebug at a breakpoint or after | 982 | execution, the program re-enters Edebug at a breakpoint or after |
diff --git a/doc/lispref/streams.texi b/doc/lispref/streams.texi index 70b11d78b0a..e485d8c4d14 100644 --- a/doc/lispref/streams.texi +++ b/doc/lispref/streams.texi | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | @c -*-texinfo-*- | 1 | @c -*-texinfo-*- |
| 2 | @c This is part of the GNU Emacs Lisp Reference Manual. | 2 | @c This is part of the GNU Emacs Lisp Reference Manual. |
| 3 | @c Copyright (C) 1990-1994, 1998-1999, 2001-2012 Free Software Foundation, Inc. | 3 | @c Copyright (C) 1990-1994, 1998-1999, 2001-2012 Free Software Foundation, Inc. |
| 4 | @c See the file elisp.texi for copying conditions. | 4 | @c See the file elisp.texi for copying conditions. |
| 5 | @setfilename ../../info/streams | 5 | @setfilename ../../info/streams |
| 6 | @node Read and Print, Minibuffers, Debugging, Top | 6 | @node Read and Print, Minibuffers, Debugging, Top |
| @@ -813,7 +813,6 @@ reader to produce an uninterned symbol. | |||
| 813 | If non-@code{nil}, that means number continuously across print calls. | 813 | If non-@code{nil}, that means number continuously across print calls. |
| 814 | This affects the numbers printed for @samp{#@var{n}=} labels and | 814 | This affects the numbers printed for @samp{#@var{n}=} labels and |
| 815 | @samp{#@var{m}#} references. | 815 | @samp{#@var{m}#} references. |
| 816 | |||
| 817 | Don't set this variable with @code{setq}; you should only bind it | 816 | Don't set this variable with @code{setq}; you should only bind it |
| 818 | temporarily to @code{t} with @code{let}. When you do that, you should | 817 | temporarily to @code{t} with @code{let}. When you do that, you should |
| 819 | also bind @code{print-number-table} to @code{nil}. | 818 | also bind @code{print-number-table} to @code{nil}. |
| @@ -826,8 +825,8 @@ to bind it to @code{nil} when you bind @code{print-continuous-numbering}. | |||
| 826 | @end defvar | 825 | @end defvar |
| 827 | 826 | ||
| 828 | @defvar float-output-format | 827 | @defvar float-output-format |
| 829 | This variable specifies how to print floating point numbers. Its | 828 | This variable specifies how to print floating point numbers. The |
| 830 | default value is @code{nil}, meaning use the shortest output | 829 | default is @code{nil}, meaning use the shortest output |
| 831 | that represents the number without losing information. | 830 | that represents the number without losing information. |
| 832 | 831 | ||
| 833 | To control output format more precisely, you can put a string in this | 832 | To control output format more precisely, you can put a string in this |