From 1c22f037fddb6dd9ea3b89ed25543f83c1e147ce Mon Sep 17 00:00:00 2001 From: Alex Branham Date: Fri, 31 Aug 2018 08:05:06 -0500 Subject: 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 --- etc/NEWS | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'etc') diff --git a/etc/NEWS b/etc/NEWS index f575d4dd005..a54ac2db430 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 --- -- cgit v1.2.1 From 41cdda22c78eb0b00612ce25cdb356dd64322fcc Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 12 Sep 2018 07:53:43 -0700 Subject: * etc/PROBLEMS: Document Ubuntu 16.04 issue. --- etc/PROBLEMS | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'etc') diff --git a/etc/PROBLEMS b/etc/PROBLEMS index 15e2b3359d4..7dfafe04deb 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS @@ -2986,6 +2986,15 @@ as a macro. If the definition (in both unex*.c and malloc.c) is wrong, it can cause problems like this. You might be able to find the correct value in the man page for a.out(5). +* 'make check' failures + +** emacs-module-tests fail on Ubuntu 16.04 + +This is due to a bug in GCC that was fixed in 2015; see +. +You can work around the problem by using a later version of GCC or of +Ubuntu, or by configuring without modules. + * Problems on legacy systems This section covers bugs reported on very old hardware or software. -- cgit v1.2.1 From 20ecc5266e1ffb1cff3e31475631b5c76b99e997 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 15 Sep 2018 11:07:16 +0300 Subject: ; * etc/NEWS: Document recent change in 'thing-at-point'. --- etc/NEWS | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'etc') diff --git a/etc/NEWS b/etc/NEWS index a54ac2db430..3a949a9805c 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -131,6 +131,17 @@ depending on the new customizable variable 'read-answer-short'. ** New function 'assoc-delete-all'. Like 'assq-delete-all', but uses 'equal' for comparison. +--- +** The function 'thing-at-point' behaves as before Emacs 26.1. +The behavior of 'thing-at-point' when called with argument 'list' has +changed in Emacs 26.1, in that it didn't consider text inside comments +and strings as a potential list. This change is now reverted, and +'thing-at-point' behaves like it did before Emacs 26.1. + +To cater to use cases where comments and strings are to be ignored +when looking for a list, the function 'list-at-point' now takes an +optional argument to do so. + * Changes in Emacs 26.2 on Non-Free Operating Systems -- cgit v1.2.1 From cc8f334d2da736be8935f5abae51f7b1f992b343 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 15 Sep 2018 11:51:34 +0300 Subject: Document changes called out in NEWS * doc/lispref/lists.texi (Association Lists): Document 'assoc-delete-all'. * doc/lispref/minibuf.texi (Minibuffers): Adapt menu. (Multiple Queries): Document 'read-answer'. * etc/NEWS: Reflect the above documentation in the respective entries. --- etc/NEWS | 3 +++ 1 file changed, 3 insertions(+) (limited to 'etc') diff --git a/etc/NEWS b/etc/NEWS index 3a949a9805c..578b9b8d956 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -78,6 +78,7 @@ in its NEWS.) ** VC +--- *** VC support for Mercurial was improved. Emacs now avoids invoking 'hg' as much as possible, for faster operation. (This and the following changes were actually made in Emacs 26.1, but @@ -125,9 +126,11 @@ obsolete it. * Lisp Changes in Emacs 26.2 ++++ ** The new function 'read-answer' accepts either long or short answers depending on the new customizable variable 'read-answer-short'. ++++ ** New function 'assoc-delete-all'. Like 'assq-delete-all', but uses 'equal' for comparison. -- cgit v1.2.1