]> git.eshelyaron.com Git - emacs.git/commitdiff
next-error-find-buffer-function: Back to #'ignore
authorDmitry Gutov <dgutov@yandex.ru>
Thu, 28 May 2020 23:03:41 +0000 (02:03 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Thu, 28 May 2020 23:05:05 +0000 (02:05 +0300)
* lisp/simple.el (next-error-find-buffer-function):
Change the default back, to simplify the default behavior
(bug#40919).

lisp/simple.el

index a4b81719cedca18258d7d0cce6a2cba958017738..247769e7ab26354b815637c7ecf7fee871b1dc0a 100644 (file)
@@ -199,7 +199,7 @@ rejected, and the function returns nil."
           (and extra-test-inclusive
                (funcall extra-test-inclusive))))))
 
-(defcustom next-error-find-buffer-function #'next-error-no-navigation-try-current
+(defcustom next-error-find-buffer-function #'ignore
   "Function called to find a `next-error' capable buffer.
 This functions takes the same three arguments as the function
 `next-error-find-buffer', and should return the buffer to be
@@ -215,7 +215,7 @@ all other buffers."
                         next-error-no-navigation-try-current)
                  (function :tag "Other function"))
   :group 'next-error
-  :version "27.1")
+  :version "28.1")
 
 (defcustom next-error-found-function #'ignore
   "Function called when a next locus is found and displayed.