]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-blink): Fix spurious reference to variable `message'.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 19 Sep 2005 09:17:14 +0000 (09:17 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 19 Sep 2005 09:17:14 +0000 (09:17 +0000)
lisp/progmodes/sh-script.el

index fc3f0beee0417104ec3c31fba088c3b74f35319c..8af9b637b0b465e17c94f4b6283f76139a9c55cf 100644 (file)
@@ -2574,7 +2574,7 @@ If INFO is supplied it is used, else it is calculated from current line."
        (goto-char blinkpos)
        (if msg (message "%s" msg) (message nil))
        (sit-for blink-matching-delay))
-    (if message (message "%s" msg) (message nil))))
+    (if msg (message "%s" msg) (message nil))))
 
 (defun sh-show-indent (arg)
   "Show the how the currently line would be indented.