]> git.eshelyaron.com Git - emacs.git/commitdiff
* progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
authorLeo Liu <sdl.web@gmail.com>
Tue, 4 Jun 2013 23:52:06 +0000 (07:52 +0800)
committerLeo Liu <sdl.web@gmail.com>
Tue, 4 Jun 2013 23:52:06 +0000 (07:52 +0800)
(compilation-auto-jump): Suppress the "Mark set" message to give
way to exit message.

lisp/ChangeLog
lisp/progmodes/compile.el

index 713bfd12f311a50cb9f1b7233353cf6fcca203e2..0910d1fc2b4d8b838750c9249c1b1b35d2b75f57 100644 (file)
@@ -1,3 +1,9 @@
+2013-06-04  Leo Liu  <sdl.web@gmail.com>
+
+       * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
+       (compilation-auto-jump): Suppress the "Mark set" message to give
+       way to exit message.
+
 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
 
        * eshell/em-term.el (cl-lib): Require `cl-lib'.
index d6f136ec92d534c89f1d1e6c11cf8af33d7c6fec..d9c482330ccc7e3e7a4847efca6a5426a3b6883c 100644 (file)
@@ -1002,7 +1002,7 @@ POS and RES.")
     (let ((win (get-buffer-window buffer 0)))
       (if win (set-window-point win pos)))
     (if compilation-auto-jump-to-first-error
-       (compile-goto-error))))
+       (compile-goto-error nil t))))
 
 ;; This function is the central driver, called when font-locking to gather
 ;; all information needed to later jump to corresponding source code.
@@ -2317,7 +2317,7 @@ Prefix arg N says how many files to move backwards (or forwards, if negative)."
 
 (defalias 'compile-mouse-goto-error 'compile-goto-error)
 
-(defun compile-goto-error (&optional event)
+(defun compile-goto-error (&optional event nomsg)
   "Visit the source for the error message at point.
 Use this command in a compilation log buffer.  Sets the mark at point there."
   (interactive (list last-input-event))
@@ -2328,7 +2328,7 @@ Use this command in a compilation log buffer.  Sets the mark at point there."
   (if (get-text-property (point) 'compilation-directory)
       (dired-other-window
        (car (get-text-property (point) 'compilation-directory)))
-    (push-mark)
+    (push-mark nil nomsg)
     (setq compilation-current-error (point))
     (next-error-internal)))