diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2020-05-29 02:03:41 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2020-05-29 02:05:05 +0300 |
commit | 7865820f6b04486f4408fce30c2266379b0d59e8 (patch) | |
tree | 298c8f3fa3f81f5121357c307b04144fd6c330da | |
parent | 7af4e72de2488dd44a42d68effe7071d41c13028 (diff) | |
download | emacs-7865820f6b04486f4408fce30c2266379b0d59e8.tar.gz |
next-error-find-buffer-function: Back to #'ignore
* lisp/simple.el (next-error-find-buffer-function):
Change the default back, to simplify the default behavior
(bug#40919).
-rw-r--r-- | lisp/simple.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index a4b81719ced..247769e7ab2 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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. |