comparison lisp/progmodes/flymake.el @ 102095:1dd8685cb091

(flymake): Add defgroup. (Bug#2356)
author Martin Rudalics <rudalics@gmx.at>
date Wed, 18 Feb 2009 07:41:10 +0000
parents a9dc0e7c3f2b
children d1b49e289bbf
comparison
equal deleted inserted replaced
102094:0a99ba31ebe9 102095:1dd8685cb091
260 "List of currently active flymake processes.") 260 "List of currently active flymake processes.")
261 261
262 (defvar flymake-output-residual nil) 262 (defvar flymake-output-residual nil)
263 263
264 (make-variable-buffer-local 'flymake-output-residual) 264 (make-variable-buffer-local 'flymake-output-residual)
265
266 (defgroup flymake nil
267 "A universal on-the-fly syntax checker."
268 :version "23.1"
269 :group 'tools)
265 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)
269 ("\\.xml\\'" flymake-xml-init) 274 ("\\.xml\\'" flymake-xml-init)