summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/cus-start.el3
3 files changed, 4 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index be0f50d9e46..055caeed10d 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -165,8 +165,6 @@ On encountering a fatal error, Emacs now outputs a textual description
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.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 471d1e506f1..036205885ff 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2012-10-08 Glenn Morris <rgm@gnu.org>
+ * cus-start.el (message-log-max): Set :version.
+
* calendar/calendar.el (calendar-intermonth-header): Doc fix.
2012-10-08 Martin Rudalics <rudalics@gmx.at>
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 28c1d3e3026..579551c9a91 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -452,7 +452,8 @@ since it could result in memory overflow and make Emacs crash."
(message-log-max debug (choice (const :tag "Disable" nil)
(integer :menu-tag "lines"
:format "%v")
- (other :tag "Unlimited" t)))
+ (other :tag "Unlimited" t))
+ "24.3")
(unibyte-display-via-language-environment mule boolean)
(blink-cursor-alist cursor alist "22.1")
(overline-margin display integer "22.1")