# HG changeset patch # User Romain Francoise # Date 1128251221 0 # Node ID cbc600deccb55201256b4ab429d10abe8f1b6ded # Parent 7a79db995674da9837ff18933aae6d09ad076dce (compile-goto-error): Delete extra paren. diff -r 7a79db995674 -r cbc600deccb5 lisp/ChangeLog --- a/lisp/ChangeLog Sun Oct 02 09:35:32 2005 +0000 +++ b/lisp/ChangeLog Sun Oct 02 11:07:01 2005 +0000 @@ -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 -r 7a79db995674 -r cbc600deccb5 lisp/progmodes/compile.el --- a/lisp/progmodes/compile.el Sun Oct 02 09:35:32 2005 +0000 +++ b/lisp/progmodes/compile.el Sun Oct 02 11:07:01 2005 +0000 @@ -1553,7 +1553,7 @@ (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.