diff options
author | Francesco Potortì <pot@gnu.org> | 2001-11-23 09:36:24 +0000 |
---|---|---|
committer | Francesco Potortì <pot@gnu.org> | 2001-11-23 09:36:24 +0000 |
commit | 5d1c524737d1eb905a89c3b4ab465dec21285496 (patch) | |
tree | 02981226c3458fc49ed58701168d800049ba765a /lisp/generic-x.el | |
parent | 28ff42939f0751704303e723ab993b79842f68dc (diff) | |
download | emacs-5d1c524737d1eb905a89c3b4ab465dec21285496.tar.gz |
(mailrc-generic-mode): Highlight the `source' keyword.
Diffstat (limited to 'lisp/generic-x.el')
-rw-r--r-- | lisp/generic-x.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/generic-x.el b/lisp/generic-x.el index 8335cf038f0..7b2c86a7c7b 100644 --- a/lisp/generic-x.el +++ b/lisp/generic-x.el @@ -1482,12 +1482,15 @@ you must reload generic-x to enable the specified modes." "if" "ignore" "set" + "source" "unset" ) '(("^\\s-*\\(alias\\|group\\)\\s-+\\([-A-Za-z0-9_]+\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$" (2 font-lock-constant-face) (3 font-lock-variable-name-face)) ("^\\s-*\\(unset\\|set\\|ignore\\)\\s-+\\([-A-Za-z0-9_]+\\)=?\\([^\n\r#]*\\)\\(#.*\\)?$" - (2 font-lock-constant-face) (3 font-lock-variable-name-face))) + (2 font-lock-constant-face) (3 font-lock-variable-name-face)) + ("^\\s-*\\(source\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$" + (2 font-lock-variable-name-face))) (list "\\.mailrc\\'") nil "Mode for mailrc files.") |