diff options
| author | Martin Rudalics | 2009-02-18 07:41:10 +0000 |
|---|---|---|
| committer | Martin Rudalics | 2009-02-18 07:41:10 +0000 |
| commit | 57a97b446f4dbac34c6f56b7f5271a7e6068801f (patch) | |
| tree | e07bce863a8ee9f32ee30371a207840f338b715c | |
| parent | dec6b98cbf137630a95613ed2873f4962f127aa1 (diff) | |
| download | emacs-57a97b446f4dbac34c6f56b7f5271a7e6068801f.tar.gz emacs-57a97b446f4dbac34c6f56b7f5271a7e6068801f.zip | |
(flymake): Add defgroup. (Bug#2356)
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/flymake.el | 5 |
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 @@ | |||
| 1 | 2009-02-18 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * progmodes/flymake.el (flymake): Add defgroup. (Bug#2356) | ||
| 4 | |||
| 1 | 2009-02-18 Glenn Morris <rgm@gnu.org> | 5 | 2009-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) |