diff options
author | Glenn Morris <rgm@gnu.org> | 2014-10-09 21:11:24 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-10-09 21:11:24 -0400 |
commit | dcc327d43b18c2495474065a9bd729cb9dcaf93e (patch) | |
tree | b3f692cccde196d4325c6daa269e562f7bba647f /lisp/info.el | |
parent | 8881986b3e227f46d8a7d6766b41802bcfc2517c (diff) | |
download | emacs-dcc327d43b18c2495474065a9bd729cb9dcaf93e.tar.gz emacs-dcc327d43b18c2495474065a9bd729cb9dcaf93e.tar.bz2 emacs-dcc327d43b18c2495474065a9bd729cb9dcaf93e.zip |
* lisp/info.el (Info-fontify-maximum-menu-size): Bump to 400k.
Fixes: debbugs:16227
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 3 |
1 files changed, 2 insertions, 1 deletions
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.") :type 'boolean :group 'info) -(defcustom Info-fontify-maximum-menu-size 100000 +(defcustom Info-fontify-maximum-menu-size 400000 "Maximum size of menu to fontify if `font-lock-mode' is non-nil. Set to nil to disable node fontification." :type 'integer + :version "25.1" ; 100k -> 400k :group 'info) (defcustom Info-use-header-line t |