emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 1c22f03: Increase default value for imenu-auto-re


From: Robert Pluim
Subject: [Emacs-diffs] emacs-26 1c22f03: Increase default value for imenu-auto-rescan-maxout
Date: Wed, 12 Sep 2018 09:26:40 -0400 (EDT)

branch: emacs-26
commit 1c22f037fddb6dd9ea3b89ed25543f83c1e147ce
Author: Alex Branham <address@hidden>
Commit: Robert Pluim <address@hidden>

    Increase default value for imenu-auto-rescan-maxout
    
    * lisp/imenu.el (imenu-auto-rescan-maxout): Increase default value to
      600000.  (Bug#18426)
    * doc/emacs/programs.texi (imenu-auto-rescan-maxout): Add
      documentation for imenu-auto-rescan-maxout.
    
    Copyright-paperwork-exempt: yes
---
 doc/emacs/programs.texi | 4 ++++
 etc/NEWS                | 5 +++++
 lisp/imenu.el           | 8 ++++----
 3 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/doc/emacs/programs.texi b/doc/emacs/programs.texi
index 138f82a..46711aa 100644
--- a/doc/emacs/programs.texi
+++ b/doc/emacs/programs.texi
@@ -308,6 +308,10 @@ Rescanning happens automatically if you set 
@code{imenu-auto-rescan} to
 a address@hidden value.  There is no need to rescan because of small
 changes in the text.
 
address@hidden imenu-auto-rescan-maxout
+  @code{imenu-auto-rescan} will be disabled in buffers that are larger
+than @code{imenu-auto-rescan-maxout} in bytes.
+
 @vindex imenu-sort-function
   You can customize the way the menus are sorted by setting the
 variable @code{imenu-sort-function}.  By default, names are ordered as
diff --git a/etc/NEWS b/etc/NEWS
index f575d4d..a54ac2d 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -50,6 +50,11 @@ often cause crashes.  Set it to nil if you really need those 
fonts.
 ---
 *** New toggle 'ibuffer-do-toggle-lock', bound to 'L'.
 
+** Imenu
+
+---
+*** The value for 'imenu-auto-rescan-maxout' has been increased to 600000.
+
 ** Gnus
 
 ---
diff --git a/lisp/imenu.el b/lisp/imenu.el
index 8911452..2608eb2 100644
--- a/lisp/imenu.el
+++ b/lisp/imenu.el
@@ -96,11 +96,11 @@ This might not yet be honored by all index-building 
functions."
   :type 'boolean
   :group 'imenu)
 
-(defcustom imenu-auto-rescan-maxout 60000
-  "Imenu auto-rescan is disabled in buffers larger than this size (in bytes).
-This variable is buffer-local."
+(defcustom imenu-auto-rescan-maxout 600000
+  "Imenu auto-rescan is disabled in buffers larger than this size (in bytes)."
   :type 'integer
-  :group 'imenu)
+  :group 'imenu
+  :version "26.2")
 
 (defvar imenu-always-use-completion-buffer-p nil)
 (make-obsolete-variable 'imenu-always-use-completion-buffer-p



reply via email to

[Prev in Thread] Current Thread [Next in Thread]