From: Luc Teirlinck Date: Sat, 2 Jul 2005 21:17:05 +0000 (+0000) Subject: (flymake-mode, flymake-mode-off): Fix unbalanced parentheses. X-Git-Tag: emacs-pretest-22.0.90~8511 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd6a83d5b3d1b9792662225440729195e2afa581;p=emacs.git (flymake-mode, flymake-mode-off): Fix unbalanced parentheses. From David Hunter (tiny change). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 58e934d5165..17ac9d8d34a 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-07-02 David Hunter (tiny change) + + * progmodes/flymake.el (flymake-mode, flymake-mode-off): Fix + unbalanced parentheses. + 2005-07-02 Stefan Monnier * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index ec2824392e2..2fe7b75e35b 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el @@ -1488,7 +1488,7 @@ With arg, turn Flymake mode on if and only if arg is positive." (cancel-timer flymake-timer) (setq flymake-timer nil)) - (setq flymake-is-running nil))) + (setq flymake-is-running nil)))) ;;;###autoload (defun flymake-mode-on () @@ -1500,7 +1500,7 @@ With arg, turn Flymake mode on if and only if arg is positive." (defun flymake-mode-off () "Turn flymake mode off." (flymake-mode 0) - (flymake-log 1 "flymake mode turned OFF for buffer %s" (buffer-name)) + (flymake-log 1 "flymake mode turned OFF for buffer %s" (buffer-name))) (defcustom flymake-start-syntax-check-on-newline t "Start syntax check if newline char was added/removed from the buffer."