]> code.delx.au - gnu-emacs/commitdiff
(flymake-mode, flymake-mode-off): Fix unbalanced parentheses.
authorLuc Teirlinck <teirllm@auburn.edu>
Sat, 2 Jul 2005 21:17:05 +0000 (21:17 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Sat, 2 Jul 2005 21:17:05 +0000 (21:17 +0000)
From David Hunter (tiny change).

lisp/ChangeLog
lisp/progmodes/flymake.el

index 58e934d51650fc7647e5dc327ebc0f4c95213e62..17ac9d8d34a794116dd21711ba9c160badf02c74 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-02 David Hunter <hunterd_42@comcast.net> (tiny change)
+
+       * progmodes/flymake.el (flymake-mode, flymake-mode-off): Fix
+       unbalanced parentheses.
+
 2005-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * progmodes/flymake.el (flymake-mode-on, flymake-mode-off): Move body
index ec2824392e20abe56674ac2e284ea5063f651451..2fe7b75e35be848ec7ac1eefc336f1ee3a4198b6 100644 (file)
@@ -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."