From: Romain Francoise Date: Sun, 2 Oct 2005 11:07:01 +0000 (+0000) Subject: (compile-goto-error): Delete extra paren. X-Git-Tag: emacs-pretest-22.0.90~6862 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=942c40e3e37a4b2ab74a860f4fa5c2199ad7e5cf;p=emacs.git (compile-goto-error): Delete extra paren. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 47f9a9b7946..d02505c3965 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2005-10-02 Romain Francoise + + * progmodes/compile.el (compile-goto-error): Delete extra paren. + 2005-10-02 Andreas Schwab * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 632adb0ca07..269fbeaf137 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el @@ -1553,7 +1553,7 @@ Use this command in a compilation log buffer. Sets the mark at point there." (dired-other-window (car (get-text-property (point) 'directory))) (push-mark) (setq compilation-current-error (point)) - (next-error-internal)))) + (next-error-internal))) ;; Return a compilation buffer. ;; If the current buffer is a compilation buffer, return it.