aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2018-01-31 07:50:23 -0800
committerGlenn Morris2018-01-31 07:50:23 -0800
commit4dbc1ef5e6cf55426d023be563ff93d74b675218 (patch)
tree1fabaf73b948f9b1d8d28d63e83571b74ad88ce0 /src
parent84d066a73fc4191a675c87c81ec1a4f531375e95 (diff)
parent22922c7c67efdcb42ba4bf35b0ea507cca08f559 (diff)
downloademacs-4dbc1ef5e6cf55426d023be563ff93d74b675218.tar.gz
emacs-4dbc1ef5e6cf55426d023be563ff93d74b675218.zip
Merge from origin/emacs-26
22922c7 (origin/emacs-26) * doc/emacs/entering.texi (Entering Emacs):... 59657c4 Document 'window-at-side-p' in the Elisp manual 2b35ed0 Document external-debugging-output in the Elisp Manual (Bug#2... db6564c Fix scroll-margin docstring (Bug#13791) 732d1b9 Clarify that `ansi-term' is almost the same as `term' (Bug#18... f706c59 Update manual description of locate-file (Bug#23650) 1602262 Clarify effect of print-gensym (Bug#27776) 53e9fa2 * lisp/custom.el (defcustom): Fix docstring (Bug#27891). 607cc4e Define cl-type-definition button type as needed (Bug#28899) 9e6889c Emphasize that GPG passphrase caching is temporary (Bug#29907) 4b5711b Fix @examples in cc-mode.info, where lines were getting glued... 71961f1 Minor change in "Mode Line" section of Emacs manual 55a2b76 More fixes in the Emacs manual
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,