]> git.eshelyaron.com Git - emacs.git/commitdiff
(compile-mouse-goto-error): Simplify.
authorKarl Heuer <kwzh@gnu.org>
Sat, 2 Apr 1994 05:07:50 +0000 (05:07 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 2 Apr 1994 05:07:50 +0000 (05:07 +0000)
(compilation-parse-errors-function): Doc fix.

lisp/progmodes/compile.el

index 4ddc2bd574243bdaf966e33eeb2fcb49e416ae2b..618e68d55f0cbb82d4e663871acd46feaa5b949b 100644 (file)
@@ -61,7 +61,7 @@ it at all.")
 It takes args LIMIT-SEARCH and FIND-AT-LEAST.
 If LIMIT-SEARCH is non-nil, don't bother parsing past that location.
 If FIND-AT-LEAST is non-nil, don't bother parsing after finding that 
- many new erros.
+many new errors.
 It should read in the source files which have errors and set
 `compilation-error-list' to a list with an element for each error message
 found.  See that variable for more info.")
@@ -684,39 +684,38 @@ Does NOT find the source line like \\[next-error]."
 
 (defun compile-mouse-goto-error (event)
   (interactive "e")
-  (let (file)
-    (save-excursion
-      (set-buffer (window-buffer (posn-window (event-end event))))
-      (save-excursion
-       (goto-char (posn-point (event-end event)))
-       (or (compilation-buffer-p (current-buffer))
-           (error "Not in a compilation buffer."))
-       (setq compilation-last-buffer (current-buffer))
-       (compile-reinitialize-errors nil (point))
-
-       ;; Move to bol; the marker for the error on this line will point there.
-       (beginning-of-line)
-
-       ;; Move compilation-error-list to the elt of compilation-old-error-list
-       ;; we want.
-       (setq compilation-error-list compilation-old-error-list)
-       (while (and compilation-error-list
-                   (> (point) (car (car compilation-error-list))))
-         (setq compilation-error-list (cdr compilation-error-list)))
-       (or compilation-error-list
-           (error "No error to go to"))))
-    (select-window (posn-window (event-end event)))
-    ;; Move to another window, so that next-error's window changes
-    ;; result in the desired setup.
-    (or (one-window-p)
-       (progn
-         (other-window -1)
-         ;; other-window changed the selected buffer,
-         ;; but we didn't want to do that.
-         (set-buffer compilation-last-buffer)))
+  (save-excursion
+    (set-buffer (window-buffer (posn-window (event-end event))))
+    (goto-char (posn-point (event-end event)))
+
+    (or (compilation-buffer-p (current-buffer))
+       (error "Not in a compilation buffer."))
+    (setq compilation-last-buffer (current-buffer))
+    (compile-reinitialize-errors nil (point))
 
-    (push-mark)
-    (next-error 1)))
+    ;; Move to bol; the marker for the error on this line will point there.
+    (beginning-of-line)
+
+    ;; Move compilation-error-list to the elt of compilation-old-error-list
+    ;; we want.
+    (setq compilation-error-list compilation-old-error-list)
+    (while (and compilation-error-list
+               (> (point) (car (car compilation-error-list))))
+      (setq compilation-error-list (cdr compilation-error-list)))
+    (or compilation-error-list
+       (error "No error to go to")))
+  (select-window (posn-window (event-end event)))
+  ;; Move to another window, so that next-error's window changes
+  ;; result in the desired setup.
+  (or (one-window-p)
+      (progn
+       (other-window -1)
+       ;; other-window changed the selected buffer,
+       ;; but we didn't want to do that.
+       (set-buffer compilation-last-buffer)))
+
+  (push-mark)
+  (next-error 1))
 
 (defun compile-goto-error (&optional argp)
   "Visit the source for the error message point is on.