From 195256fee1f2e23d00e180b4e12825e8d73dc4a8 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Fri, 22 Dec 2006 19:49:08 +0000 Subject: [PATCH] (Info-fontify-maximum-menu-size): Bump to 1000000. (Info-fontify-node): Do fontify indices. --- lisp/info.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index b2a67265dca..6d966da3317 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -145,7 +145,7 @@ 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 1000000 "*Maximum size of menu to fontify if `font-lock-mode' is non-nil." :type 'integer :group 'info) @@ -3939,7 +3939,6 @@ the variable `Info-file-list-for-emacs'." (goto-char (point-min)) (when (and (or not-fontified-p fontify-visited-p) (search-forward "\n* Menu:" nil t) - (not (Info-index-node)) ;; Don't take time to annotate huge menus (< (- (point-max) (point)) Info-fontify-maximum-menu-size)) (let ((n 0) -- 2.39.2