aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/print.c10
-rw-r--r--src/xdisp.c4
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
749DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0, 749DEFUN ("external-debugging-output", Fexternal_debugging_output, Sexternal_debugging_output, 1, 1, 0,
750 doc: /* Write CHARACTER to stderr. 750 doc: /* Write CHARACTER to stderr.
751You can call print while debugging emacs, and pass it this function 751You can call `print' while debugging emacs, and pass it this function
752to make it write to the debugging output. */) 752to 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.
2374I.e., the value of (make-symbol \"foobar\") prints as #:foobar. 2374I.e., the value of (make-symbol \"foobar\") prints as #:foobar.
2375When the uninterned symbol appears within a recursive data structure, 2375When the uninterned symbol appears multiple times within the printed
2376and the symbol appears more than once, in addition use the #N# and #N= 2376expression, and `print-circle' is non-nil, in addition use the #N#
2377constructs as needed, so that multiple references to the same symbol are 2377and #N= constructs as needed, so that multiple references to the same
2378shared once again when the text is read back. */); 2378symbol 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.
32529Recenter the window whenever point gets within this many lines 32529Trigger automatic scrolling whenever point gets within this many lines
32530of the top or bottom of the window. */); 32530of 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,