From: Gerd Moellmann Date: Wed, 9 May 2001 15:41:25 +0000 (+0000) Subject: (syms_of_print) : Doc fix. X-Git-Tag: emacs-pretest-21.0.104~576 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe88d421bdd052555428766ae723a47ff76aa5ea;p=emacs.git (syms_of_print) : Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index b9261ed28db..2a13804d77d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2001-05-09 Gerd Moellmann + * print.c (syms_of_print) : Doc fix. + * xterm.c (note_mouse_highlight): Don't change the mouse cursor back to the text cursor shape without need. diff --git a/src/print.c b/src/print.c index 95f8414b27f..2fa74543c43 100644 --- a/src/print.c +++ b/src/print.c @@ -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,