diff options
| author | Dmitry Gutov | 2020-05-29 02:03:41 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2020-05-29 02:05:05 +0300 |
| commit | 7865820f6b04486f4408fce30c2266379b0d59e8 (patch) | |
| tree | 298c8f3fa3f81f5121357c307b04144fd6c330da | |
| parent | 7af4e72de2488dd44a42d68effe7071d41c13028 (diff) | |
| download | emacs-7865820f6b04486f4408fce30c2266379b0d59e8.tar.gz emacs-7865820f6b04486f4408fce30c2266379b0d59e8.zip | |
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." | |||
| 199 | (and extra-test-inclusive | 199 | (and extra-test-inclusive |
| 200 | (funcall extra-test-inclusive)))))) | 200 | (funcall extra-test-inclusive)))))) |
| 201 | 201 | ||
| 202 | (defcustom next-error-find-buffer-function #'next-error-no-navigation-try-current | 202 | (defcustom next-error-find-buffer-function #'ignore |
| 203 | "Function called to find a `next-error' capable buffer. | 203 | "Function called to find a `next-error' capable buffer. |
| 204 | This functions takes the same three arguments as the function | 204 | This functions takes the same three arguments as the function |
| 205 | `next-error-find-buffer', and should return the buffer to be | 205 | `next-error-find-buffer', and should return the buffer to be |
| @@ -215,7 +215,7 @@ all other buffers." | |||
| 215 | next-error-no-navigation-try-current) | 215 | next-error-no-navigation-try-current) |
| 216 | (function :tag "Other function")) | 216 | (function :tag "Other function")) |
| 217 | :group 'next-error | 217 | :group 'next-error |
| 218 | :version "27.1") | 218 | :version "28.1") |
| 219 | 219 | ||
| 220 | (defcustom next-error-found-function #'ignore | 220 | (defcustom next-error-found-function #'ignore |
| 221 | "Function called when a next locus is found and displayed. | 221 | "Function called when a next locus is found and displayed. |