aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2005-03-26 15:33:33 +0000
committerStefan Monnier2005-03-26 15:33:33 +0000
commit5ffc943b8f7011112d3bc8cba0d52d52e57facb0 (patch)
treee958de500022fee8710f264dbb753003790067c7
parente6753bacbb20e1ae92768921f3605e61b482a374 (diff)
downloademacs-5ffc943b8f7011112d3bc8cba0d52d52e57facb0.tar.gz
emacs-5ffc943b8f7011112d3bc8cba0d52d52e57facb0.zip
(flymake-mode): Add autoload cookie.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/progmodes/flymake.el1
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9ef3a5d7fc1..8e42e5f969f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12005-03-26 Stefan Monnier <monnier@iro.umontreal.ca> 12005-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2 2
3 * progmodes/flymake.el (flymake-mode): Add autoload cookie.
4
3 * emacs-lisp/debug.el (debugger-record-expression): Add a missing 5 * emacs-lisp/debug.el (debugger-record-expression): Add a missing
4 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>. 6 format to `message'. Inspired by Deepak Goel <deego@gnufans.org>.
5 7
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 1a5059776ed..70150111a86 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -1503,6 +1503,7 @@ Return first 'INCLUDE-DIRS/REL-FILE-NAME' that exists, or just REL-FILE-NAME if
1503 (flymake-log 0 "switched OFF Flymake mode for buffer %s due to fatal status %s, warning %s" 1503 (flymake-log 0 "switched OFF Flymake mode for buffer %s due to fatal status %s, warning %s"
1504 (buffer-name buffer) status warning))) 1504 (buffer-name buffer) status warning)))
1505 1505
1506;;;###autoload
1506(define-minor-mode flymake-mode 1507(define-minor-mode flymake-mode
1507 "Minor mode to do on-the-fly syntax checking. 1508 "Minor mode to do on-the-fly syntax checking.
1508When called interactively, toggles the minor mode. 1509When called interactively, toggles the minor mode.