1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-06 20:49:33 +00:00

(flymake-mode, flymake-mode-off): Fix unbalanced parentheses.

From David Hunter (tiny change).
This commit is contained in:
Luc Teirlinck 2005-07-02 21:17:05 +00:00
parent 1953295bde
commit bd6a83d5b3
2 changed files with 7 additions and 2 deletions

View 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

View 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."