]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-handle-exit): Quote first argument of `run-hook-with-args'.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 16 May 2007 15:46:07 +0000 (15:46 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 16 May 2007 15:46:07 +0000 (15:46 +0000)
lisp/ChangeLog
lisp/progmodes/compile.el

index 5e8497e12464f054aa494e46e884cc6beb713337..5d1f57ed14e6abfec8f5bc79974f0d34bd1a93a9 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-16  Nikolaj Schumacher  <n_schumacher@web.de>  (tiny change)
+
+       * progmodes/compile.el (compilation-handle-exit): Quote first
+       argument of `run-hook-with-args'.
+
 2007-05-16  Juanma Barranquero  <lekktu@gmail.com>
 
        * buff-menu.el (Buffer-menu-sort-column):
index 1613fd8f97638e6522fd051f5e317fce27bc6ebf..a3107339c2bc626e72ff55a90985a4dbc12097b8 100644 (file)
@@ -1448,7 +1448,7 @@ Turning the mode on runs the normal hook `compilation-minor-mode-hook'."
     (with-no-warnings
       (if compilation-finish-function
          (funcall compilation-finish-function (current-buffer) msg)))
-    (run-hook-with-args compilation-finish-functions (current-buffer) msg)))
+    (run-hook-with-args 'compilation-finish-functions (current-buffer) msg)))
 
 ;; Called when compilation process changes state.
 (defun compilation-sentinel (proc msg)