From 7fa1a8f9db3ad6ce8095bdc7527ab3b8353c55ed Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 19 Sep 2005 09:17:14 +0000 Subject: [PATCH] (sh-blink): Fix spurious reference to variable `message'. --- lisp/progmodes/sh-script.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el index fc3f0beee04..8af9b637b0b 100644 --- a/lisp/progmodes/sh-script.el +++ b/lisp/progmodes/sh-script.el @@ -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. -- 2.39.5