diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 10 | ||||
| -rw-r--r-- | src/xdisp.c | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/print.c b/src/print.c index 71579673248..b3c0f6f38fc 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -748,7 +748,7 @@ is used instead. */) | |||
| 748 | 748 | ||
| 749 | DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, | 749 | DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, |
| 750 | doc: /* Write CHARACTER to stderr. | 750 | doc: /* Write CHARACTER to stderr. |
| 751 | You can call print while debugging emacs, and pass it this function | 751 | You can call `print' while debugging emacs, and pass it this function |
| 752 | to make it write to the debugging output. */) | 752 | to make it write to the debugging output. */) |
| 753 | (Lisp_Object character) | 753 | (Lisp_Object character) |
| 754 | { | 754 | { |
| @@ -2372,10 +2372,10 @@ I.e., (quote foo) prints as \\='foo, (function foo) as #\\='foo. */); | |||
| 2372 | DEFVAR_LISP ("print-gensym", Vprint_gensym, | 2372 | DEFVAR_LISP ("print-gensym", Vprint_gensym, |
| 2373 | doc: /* Non-nil means print uninterned symbols so they will read as uninterned. | 2373 | doc: /* Non-nil means print uninterned symbols so they will read as uninterned. |
| 2374 | I.e., the value of (make-symbol \"foobar\") prints as #:foobar. | 2374 | I.e., the value of (make-symbol \"foobar\") prints as #:foobar. |
| 2375 | When the uninterned symbol appears within a recursive data structure, | 2375 | When the uninterned symbol appears multiple times within the printed |
| 2376 | and the symbol appears more than once, in addition use the #N# and #N= | 2376 | expression, and `print-circle' is non-nil, in addition use the #N# |
| 2377 | constructs as needed, so that multiple references to the same symbol are | 2377 | and #N= constructs as needed, so that multiple references to the same |
| 2378 | shared once again when the text is read back. */); | 2378 | symbol are shared once again when the text is read back. */); |
| 2379 | Vprint_gensym = Qnil; | 2379 | Vprint_gensym = Qnil; |
| 2380 | 2380 | ||
| 2381 | DEFVAR_LISP ("print-circle", Vprint_circle, | 2381 | DEFVAR_LISP ("print-circle", Vprint_circle, |
diff --git a/src/xdisp.c b/src/xdisp.c index fd8aad04121..17a3cc3b89a 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -32526,8 +32526,8 @@ A value of zero means always recenter point if it moves off screen. */); | |||
| 32526 | 32526 | ||
| 32527 | DEFVAR_INT ("scroll-margin", scroll_margin, | 32527 | DEFVAR_INT ("scroll-margin", scroll_margin, |
| 32528 | doc: /* Number of lines of margin at the top and bottom of a window. | 32528 | doc: /* Number of lines of margin at the top and bottom of a window. |
| 32529 | Recenter the window whenever point gets within this many lines | 32529 | Trigger automatic scrolling whenever point gets within this many lines |
| 32530 | of the top or bottom of the window. */); | 32530 | of the top or bottom of the window (see info node `Auto Scrolling'). */); |
| 32531 | scroll_margin = 0; | 32531 | scroll_margin = 0; |
| 32532 | 32532 | ||
| 32533 | DEFVAR_LISP ("maximum-scroll-margin", Vmaximum_scroll_margin, | 32533 | DEFVAR_LISP ("maximum-scroll-margin", Vmaximum_scroll_margin, |