diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2016-01-23 12:09:55 +0300 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2016-01-23 23:11:31 +0300 |
commit | 2111e0eeb5a10389790e39b9103fa73bcf2b75c0 (patch) | |
tree | 250cd1a38a43680e7ac410cb920b258b572f586d /lisp/progmodes | |
parent | 4e11ad37300504c63850bf540b84d7076c1b12ca (diff) | |
download | emacs-2111e0eeb5a10389790e39b9103fa73bcf2b75c0.tar.gz |
Comment out next-error-function integration in xref
* lisp/progmodes/xref.el (xref--xref-buffer-mode):
Comment out next-error-function integration
(http://lists.gnu.org/archive/html/emacs-devel/2016-01/msg01286.html).
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/xref.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index d32da371771..b7ac9e02e9f 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -600,8 +600,10 @@ references displayed in the current *xref* buffer." (define-derived-mode xref--xref-buffer-mode special-mode "XREF" "Mode for displaying cross-references." (setq buffer-read-only t) - (setq next-error-function #'xref--next-error-function) - (setq next-error-last-buffer (current-buffer))) + ;; FIXME: http://debbugs.gnu.org/20489 + ;; (setq next-error-function #'xref--next-error-function) + ;; (setq next-error-last-buffer (current-buffer)) + ) (defun xref--next-error-function (n reset?) (when reset? |