emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r110317: * xdisp.c (syms_of_xdisp): D


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r110317: * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
Date: Mon, 01 Oct 2012 00:03:04 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110317
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Mon 2012-10-01 00:03:04 -0700
message:
  * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
modified:
  etc/NEWS
  src/ChangeLog
  src/xdisp.c
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-10-01 02:07:14 +0000
+++ b/etc/NEWS  2012-10-01 07:03:04 +0000
@@ -160,6 +160,8 @@
 of the fatal signal, and a short backtrace on platforms like glibc
 that support backtraces.
 
+** `message-log-max' now defaults to 1000, not 100.
+
 ---
 ** If your Emacs was built from a bzr checkout, the new variable
 `emacs-bzr-version' contains information about the bzr revision used.

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-10-01 06:36:54 +0000
+++ b/src/ChangeLog     2012-10-01 07:03:04 +0000
@@ -1,5 +1,9 @@
 2012-10-01  Paul Eggert  <address@hidden>
 
+       * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
+       Suggested by Juri Linkov in
+       <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
+
        Prefer plain 'static' to 'static inline' (Bug#12541).
        With static functions, modern compilers inline pretty well by
        themselves; advice from programmers often hurts as much as it helps.

=== modified file 'src/xdisp.c'
--- a/src/xdisp.c       2012-10-01 06:36:54 +0000
+++ b/src/xdisp.c       2012-10-01 07:03:04 +0000
@@ -28986,7 +28986,7 @@
     doc: /* Maximum number of lines to keep in the message log buffer.
 If nil, disable message logging.  If t, log messages but don't truncate
 the buffer when it becomes large.  */);
-  Vmessage_log_max = make_number (100);
+  Vmessage_log_max = make_number (1000);
 
   DEFVAR_LISP ("window-size-change-functions", Vwindow_size_change_functions,
     doc: /* Functions called before redisplay, if window sizes have changed.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]