aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/flymake.el5
2 files changed, 9 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9590f39c9f7..7b1cdb23e54 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-02-18 Martin Rudalics <rudalics@gmx.at>
2
3 * progmodes/flymake.el (flymake): Add defgroup. (Bug#2356)
4
12009-02-18 Glenn Morris <rgm@gnu.org> 52009-02-18 Glenn Morris <rgm@gnu.org>
2 6
3 * mail/rmail-spam-filter.el (rmail-summary-mode-map): Remove unneeded 7 * mail/rmail-spam-filter.el (rmail-summary-mode-map): Remove unneeded
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index 81f40d15559..20fd68aa959 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -263,6 +263,11 @@ are the string substitutions (see `format')."
263 263
264(make-variable-buffer-local 'flymake-output-residual) 264(make-variable-buffer-local 'flymake-output-residual)
265 265
266(defgroup flymake nil
267 "A universal on-the-fly syntax checker."
268 :version "23.1"
269 :group 'tools)
270
266(defcustom flymake-allowed-file-name-masks 271(defcustom flymake-allowed-file-name-masks
267 '(("\\.c\\'" flymake-simple-make-init) 272 '(("\\.c\\'" flymake-simple-make-init)
268 ("\\.cpp\\'" flymake-simple-make-init) 273 ("\\.cpp\\'" flymake-simple-make-init)