diff options
| author | Lute Kamstra | 2005-04-04 09:22:59 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-04-04 09:22:59 +0000 |
| commit | d799c27880ad01225f12127ace5449a5ce77a3ee (patch) | |
| tree | 166d8929debff9b75bcfc67f62c329531f073775 | |
| parent | 1f644ce330e3f7cc37f2536db89e258d26652010 (diff) | |
| download | emacs-d799c27880ad01225f12127ace5449a5ce77a3ee.tar.gz emacs-d799c27880ad01225f12127ace5449a5ce77a3ee.zip | |
(flymake-mode): Specify :group.
| -rw-r--r-- | lisp/progmodes/flymake.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el index 70150111a86..7067ddca21c 100644 --- a/lisp/progmodes/flymake.el +++ b/lisp/progmodes/flymake.el | |||
| @@ -964,7 +964,7 @@ Convert it to flymake internal format." | |||
| 964 | (if (consp file) (setq file (car file))) | 964 | (if (consp file) (setq file (car file))) |
| 965 | (if (consp line) (setq line (car line))) | 965 | (if (consp line) (setq line (car line))) |
| 966 | (if (consp col) (setq col (car col))) | 966 | (if (consp col) (setq col (car col))) |
| 967 | 967 | ||
| 968 | (when (not (functionp line)) | 968 | (when (not (functionp line)) |
| 969 | (setq converted-list (cons (list regexp file line col) converted-list))))) | 969 | (setq converted-list (cons (list regexp file line col) converted-list))))) |
| 970 | converted-list)) | 970 | converted-list)) |
| @@ -1508,7 +1508,7 @@ Return first 'INCLUDE-DIRS/REL-FILE-NAME' that exists, or just REL-FILE-NAME if | |||
| 1508 | "Minor mode to do on-the-fly syntax checking. | 1508 | "Minor mode to do on-the-fly syntax checking. |
| 1509 | When called interactively, toggles the minor mode. | 1509 | When called interactively, toggles the minor mode. |
| 1510 | With arg, turn Flymake mode on if and only if arg is positive." | 1510 | With arg, turn Flymake mode on if and only if arg is positive." |
| 1511 | :lighter flymake-mode-line | 1511 | :group 'flymake :lighter flymake-mode-line |
| 1512 | (if flymake-mode | 1512 | (if flymake-mode |
| 1513 | (if (flymake-can-syntax-check-file (buffer-file-name)) | 1513 | (if (flymake-can-syntax-check-file (buffer-file-name)) |
| 1514 | (flymake-mode-on) | 1514 | (flymake-mode-on) |