diff options
| author | Romain Francoise | 2005-10-02 11:07:01 +0000 |
|---|---|---|
| committer | Romain Francoise | 2005-10-02 11:07:01 +0000 |
| commit | 942c40e3e37a4b2ab74a860f4fa5c2199ad7e5cf (patch) | |
| tree | 58e07bb9630bedb439071638ecb042f38a187e9b | |
| parent | aae3725f5fc8c2d9bbc6edad2ee12826e0b48068 (diff) | |
| download | emacs-942c40e3e37a4b2ab74a860f4fa5c2199ad7e5cf.tar.gz emacs-942c40e3e37a4b2ab74a860f4fa5c2199ad7e5cf.zip | |
(compile-goto-error): Delete extra paren.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 47f9a9b7946..d02505c3965 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-10-02 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compile-goto-error): Delete extra paren. | ||
| 4 | |||
| 1 | 2005-10-02 Andreas Schwab <schwab@suse.de> | 5 | 2005-10-02 Andreas Schwab <schwab@suse.de> |
| 2 | 6 | ||
| 3 | * ediff-ptch.el (ediff-fixup-patch-map): Handle file names without | 7 | * 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." | |||
| 1553 | (dired-other-window (car (get-text-property (point) 'directory))) | 1553 | (dired-other-window (car (get-text-property (point) 'directory))) |
| 1554 | (push-mark) | 1554 | (push-mark) |
| 1555 | (setq compilation-current-error (point)) | 1555 | (setq compilation-current-error (point)) |
| 1556 | (next-error-internal)))) | 1556 | (next-error-internal))) |
| 1557 | 1557 | ||
| 1558 | ;; Return a compilation buffer. | 1558 | ;; Return a compilation buffer. |
| 1559 | ;; If the current buffer is a compilation buffer, return it. | 1559 | ;; If the current buffer is a compilation buffer, return it. |