diff options
| author | Gerd Moellmann | 2001-05-09 15:41:25 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-05-09 15:41:25 +0000 |
| commit | fe88d421bdd052555428766ae723a47ff76aa5ea (patch) | |
| tree | d2f56f6b7c8b1c656a3f957e28b1078c7bb5aea1 /src | |
| parent | 0d487c52addabece10e30de0ffcfd7ec0004ee7c (diff) | |
| download | emacs-fe88d421bdd052555428766ae723a47ff76aa5ea.tar.gz emacs-fe88d421bdd052555428766ae723a47ff76aa5ea.zip | |
(syms_of_print) <print-length, print-level>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/print.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b9261ed28db..2a13804d77d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2001-05-09 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-05-09 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * print.c (syms_of_print) <print-length, print-level>: Doc fix. | ||
| 4 | |||
| 3 | * xterm.c (note_mouse_highlight): Don't change the mouse cursor | 5 | * xterm.c (note_mouse_highlight): Don't change the mouse cursor |
| 4 | back to the text cursor shape without need. | 6 | back to the text cursor shape without need. |
| 5 | 7 | ||
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."); | |||
| 2004 | 2004 | ||
| 2005 | DEFVAR_LISP ("print-length", &Vprint_length, | 2005 | DEFVAR_LISP ("print-length", &Vprint_length, |
| 2006 | "Maximum length of list to print before abbreviating.\n\ | 2006 | "Maximum length of list to print before abbreviating.\n\ |
| 2007 | A value of nil means no limit."); | 2007 | A value of nil means no limit. See also `eval-expression-print-length'."); |
| 2008 | Vprint_length = Qnil; | 2008 | Vprint_length = Qnil; |
| 2009 | 2009 | ||
| 2010 | DEFVAR_LISP ("print-level", &Vprint_level, | 2010 | DEFVAR_LISP ("print-level", &Vprint_level, |
| 2011 | "Maximum depth of list nesting to print before abbreviating.\n\ | 2011 | "Maximum depth of list nesting to print before abbreviating.\n\ |
| 2012 | A value of nil means no limit."); | 2012 | A value of nil means no limit. See also `eval-expression-print-level'."); |
| 2013 | Vprint_level = Qnil; | 2013 | Vprint_level = Qnil; |
| 2014 | 2014 | ||
| 2015 | DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines, | 2015 | DEFVAR_BOOL ("print-escape-newlines", &print_escape_newlines, |