(syms_of_print) <print-length, print-level>: Doc fix.

This commit is contained in:
Gerd Moellmann 2001-05-09 15:41:25 +00:00
parent 0d487c52ad
commit fe88d421bd
2 changed files with 4 additions and 2 deletions

View file

@ -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.

View file

@ -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,