aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-10-09 21:11:24 -0400
committerGlenn Morris2014-10-09 21:11:24 -0400
commitdcc327d43b18c2495474065a9bd729cb9dcaf93e (patch)
treeb3f692cccde196d4325c6daa269e562f7bba647f
parent8881986b3e227f46d8a7d6766b41802bcfc2517c (diff)
downloademacs-dcc327d43b18c2495474065a9bd729cb9dcaf93e.tar.gz
emacs-dcc327d43b18c2495474065a9bd729cb9dcaf93e.zip
* lisp/info.el (Info-fontify-maximum-menu-size): Bump to 400k.
Fixes: debbugs:16227
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/info.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ef31fc2ead0..33ddd79a521 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12014-10-10 Glenn Morris <rgm@gnu.org>
2
3 * info.el (Info-fontify-maximum-menu-size): Bump to 400k. (Bug#16227)
4
12014-10-09 Glenn Morris <rgm@gnu.org> 52014-10-09 Glenn Morris <rgm@gnu.org>
2 6
3 * frame.el (display-monitor-attributes-list): Doc tweaks. 7 * frame.el (display-monitor-attributes-list): Doc tweaks.
diff --git a/lisp/info.el b/lisp/info.el
index 59501c73534..68679b1643e 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -138,10 +138,11 @@ The Lisp code is executed when the node is selected.")
138 :type 'boolean 138 :type 'boolean
139 :group 'info) 139 :group 'info)
140 140
141(defcustom Info-fontify-maximum-menu-size 100000 141(defcustom Info-fontify-maximum-menu-size 400000
142 "Maximum size of menu to fontify if `font-lock-mode' is non-nil. 142 "Maximum size of menu to fontify if `font-lock-mode' is non-nil.
143Set to nil to disable node fontification." 143Set to nil to disable node fontification."
144 :type 'integer 144 :type 'integer
145 :version "25.1" ; 100k -> 400k
145 :group 'info) 146 :group 'info)
146 147
147(defcustom Info-use-header-line t 148(defcustom Info-use-header-line t