emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 2111e0e 1/2: Comment out next-error-function inte


From: Dmitry Gutov
Subject: [Emacs-diffs] emacs-25 2111e0e 1/2: Comment out next-error-function integration in xref
Date: Sun, 24 Jan 2016 00:36:19 +0000

branch: emacs-25
commit 2111e0eeb5a10389790e39b9103fa73bcf2b75c0
Author: Dmitry Gutov <address@hidden>
Commit: Dmitry Gutov <address@hidden>

    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).
---
 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 d32da37..b7ac9e0 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?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]