[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r102829: * font-lock.el (font-lock-ve
From: |
Chong Yidong |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r102829: * font-lock.el (font-lock-verbose): Default to nil. |
Date: |
Wed, 12 Jan 2011 23:30:23 -0500 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 102829
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Wed 2011-01-12 23:30:23 -0500
message:
* font-lock.el (font-lock-verbose): Default to nil.
modified:
lisp/ChangeLog
lisp/font-lock.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2011-01-13 04:23:41 +0000
+++ b/lisp/ChangeLog 2011-01-13 04:30:23 +0000
@@ -1,5 +1,9 @@
2011-01-13 Chong Yidong <address@hidden>
+ * font-lock.el (font-lock-verbose): Default to nil.
+
+2011-01-13 Chong Yidong <address@hidden>
+
* simple.el (sendmail-user-agent-compose): Move to sendmail.el.
(compose-mail): New arg RETURN-ACTION.
(compose-mail-other-window, compose-mail-other-frame): Likewise.
=== modified file 'lisp/font-lock.el'
--- a/lisp/font-lock.el 2010-10-06 04:14:05 +0000
+++ b/lisp/font-lock.el 2011-01-13 04:30:23 +0000
@@ -276,13 +276,14 @@
(integer :tag "level" 1)))))
:group 'font-lock)
-(defcustom font-lock-verbose 0
+(defcustom font-lock-verbose nil
"If non-nil, means show status messages for buffer fontification.
If a number, only buffers greater than this size have fontification messages."
:type '(choice (const :tag "never" nil)
(other :tag "always" t)
(integer :tag "size"))
- :group 'font-lock)
+ :group 'font-lock
+ :version "24.1")
;; Originally these variable values were face names such as `bold' etc.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r102829: * font-lock.el (font-lock-verbose): Default to nil.,
Chong Yidong <=