diff options
| author | Paul Eggert | 2012-10-01 00:03:04 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-10-01 00:03:04 -0700 |
| commit | b3a4c387c0e768de92b7969b2adb6670f10bda5d (patch) | |
| tree | f61569d1cca482e2d6a21a3101fce81cbf0a7b1b | |
| parent | c47a6f4f7e72bb21b900cc699b1278ddbfab7c86 (diff) | |
| download | emacs-b3a4c387c0e768de92b7969b2adb6670f10bda5d.tar.gz emacs-b3a4c387c0e768de92b7969b2adb6670f10bda5d.zip | |
* xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
3 files changed, 7 insertions, 1 deletions
| @@ -160,6 +160,8 @@ On encountering a fatal error, Emacs now outputs a textual description | |||
| 160 | of the fatal signal, and a short backtrace on platforms like glibc | 160 | of the fatal signal, and a short backtrace on platforms like glibc |
| 161 | that support backtraces. | 161 | that support backtraces. |
| 162 | 162 | ||
| 163 | ** `message-log-max' now defaults to 1000, not 100. | ||
| 164 | |||
| 163 | --- | 165 | --- |
| 164 | ** If your Emacs was built from a bzr checkout, the new variable | 166 | ** If your Emacs was built from a bzr checkout, the new variable |
| 165 | `emacs-bzr-version' contains information about the bzr revision used. | 167 | `emacs-bzr-version' contains information about the bzr revision used. |
diff --git a/src/ChangeLog b/src/ChangeLog index ec629fb9f10..41b2d24b968 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2012-10-01 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2012-10-01 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100. | ||
| 4 | Suggested by Juri Linkov in | ||
| 5 | <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>. | ||
| 6 | |||
| 3 | Prefer plain 'static' to 'static inline' (Bug#12541). | 7 | Prefer plain 'static' to 'static inline' (Bug#12541). |
| 4 | With static functions, modern compilers inline pretty well by | 8 | With static functions, modern compilers inline pretty well by |
| 5 | themselves; advice from programmers often hurts as much as it helps. | 9 | themselves; advice from programmers often hurts as much as it helps. |
diff --git a/src/xdisp.c b/src/xdisp.c index cdb9fd4e3b5..635e7ecd0b2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -28986,7 +28986,7 @@ and is used only on frames for which no explicit name has been set | |||
| 28986 | doc: /* Maximum number of lines to keep in the message log buffer. | 28986 | doc: /* Maximum number of lines to keep in the message log buffer. |
| 28987 | If nil, disable message logging. If t, log messages but don't truncate | 28987 | If nil, disable message logging. If t, log messages but don't truncate |
| 28988 | the buffer when it becomes large. */); | 28988 | the buffer when it becomes large. */); |
| 28989 | Vmessage_log_max = make_number (100); | 28989 | Vmessage_log_max = make_number (1000); |
| 28990 | 28990 | ||
| 28991 | DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions, | 28991 | DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions, |
| 28992 | doc: /* Functions called before redisplay, if window sizes have changed. | 28992 | doc: /* Functions called before redisplay, if window sizes have changed. |