mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 12:57:34 +00:00
(syms_of_print) <print-length, print-level>: Doc fix.
This commit is contained in:
parent
0d487c52ad
commit
fe88d421bd
2 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2001-05-09 Gerd Moellmann <gerd@gnu.org>
|
||||
|
||||
* print.c (syms_of_print) <print-length, print-level>: Doc fix.
|
||||
|
||||
* xterm.c (note_mouse_highlight): Don't change the mouse cursor
|
||||
back to the text cursor shape without need.
|
||||
|
||||
|
|
|
|||
|
|
@ -2004,12 +2004,12 @@ that represents the number without losing information.");
|
|||
|
||||
DEFVAR_LISP ("print-length", &Vprint_length,
|
||||
"Maximum length of list to print before abbreviating.\n\
|
||||
A value of nil means no limit.");
|
||||
A value of nil means no limit. See also `eval-expression-print-length'.");
|
||||
Vprint_length = Qnil;
|
||||
|
||||
DEFVAR_LISP ("print-level", &Vprint_level,
|
||||
"Maximum depth of list nesting to print before abbreviating.\n\
|
||||
A value of nil means no limit.");
|
||||
A value of nil means no limit. See also `eval-expression-print-level'.");
|
||||
Vprint_level = Qnil;
|
||||
|
||||
DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines,
|
||||
|
|
|
|||
Loading…
Reference in a new issue