aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2004-04-14 17:30:49 +0000
committerStefan Monnier2004-04-14 17:30:49 +0000
commita6cd3f650dbe5396be4c12c551a56abc126ea3cc (patch)
tree67220a9cb52240dbb74255ad455bc081cb1ab2f6 /lisp
parent541a44d22d7d9d430d5d464bd141eb99439b9716 (diff)
downloademacs-a6cd3f650dbe5396be4c12c551a56abc126ea3cc.tar.gz
emacs-a6cd3f650dbe5396be4c12c551a56abc126ea3cc.zip
(compile-goto-error): Use it.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/compile.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index e8dfacb5966..db42e3b1a4e 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -1364,7 +1364,7 @@ Prefix arg N says how many files to move backwards (or forwards, if negative)."
1364 "Visit the source for the error message at point. 1364 "Visit the source for the error message at point.
1365Use this command in a compilation log buffer. Sets the mark at point there." 1365Use this command in a compilation log buffer. Sets the mark at point there."
1366 (interactive (list last-input-event)) 1366 (interactive (list last-input-event))
1367 (mouse-set-point event) 1367 (if event (posn-set-point (event-end event)))
1368 (or (compilation-buffer-p (current-buffer)) 1368 (or (compilation-buffer-p (current-buffer))
1369 (error "Not in a compilation buffer")) 1369 (error "Not in a compilation buffer"))
1370 (if (get-text-property (point) 'directory) 1370 (if (get-text-property (point) 'directory)