]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_print) <print-length, print-level>: Doc fix.
authorGerd Moellmann <gerd@gnu.org>
Wed, 9 May 2001 15:41:25 +0000 (15:41 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 9 May 2001 15:41:25 +0000 (15:41 +0000)
src/ChangeLog
src/print.c

index b9261ed28db4b71c86d8e8f702fc23b32cac85cb..2a13804d77d984f790ac4f613621ecec15c77d69 100644 (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.
 
index 95f8414b27fc5769a81f72b79176f47da0a68d4f..2fa74543c431a97f386252ef38ede5658c8a2f80 100644 (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,