diff options
| author | Francesco Potortì | 2001-11-23 09:36:24 +0000 |
|---|---|---|
| committer | Francesco Potortì | 2001-11-23 09:36:24 +0000 |
| commit | 5d1c524737d1eb905a89c3b4ab465dec21285496 (patch) | |
| tree | 02981226c3458fc49ed58701168d800049ba765a | |
| parent | 28ff42939f0751704303e723ab993b79842f68dc (diff) | |
| download | emacs-5d1c524737d1eb905a89c3b4ab465dec21285496.tar.gz emacs-5d1c524737d1eb905a89c3b4ab465dec21285496.zip | |
(mailrc-generic-mode): Highlight the `source' keyword.
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/generic-x.el | 5 |
2 files changed, 11 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d26828f19e2..dadc21c3906 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-23 Francesco Potorti` <pot@gnu.org> | ||
| 2 | |||
| 3 | * generic-x.el (mailrc-generic-mode): Highlight the `source' keyword. | ||
| 4 | |||
| 1 | 2001-11-22 Colin Walters <walters@debian.org> | 5 | 2001-11-22 Colin Walters <walters@debian.org> |
| 2 | 6 | ||
| 3 | * calc/calc-misc.el (report-calc-bug): Use `reporter-prompt-for-summary-p'. | 7 | * calc/calc-misc.el (report-calc-bug): Use `reporter-prompt-for-summary-p'. |
| @@ -6,7 +10,7 @@ | |||
| 6 | 10 | ||
| 7 | 2001-11-22 Miles Bader <miles@gnu.org> | 11 | 2001-11-22 Miles Bader <miles@gnu.org> |
| 8 | 12 | ||
| 9 | * emacs-lisp/re-builder.el (reb-match-0, reb-match-1) | 13 | * emacs-lisp/re-builder.el (reb-match-0, reb-match-1) |
| 10 | (reb-match-2, reb-match-3): Add dark-background variants. | 14 | (reb-match-2, reb-match-3): Add dark-background variants. |
| 11 | 15 | ||
| 12 | 2001-11-22 Colin Walters <walters@debian.org> | 16 | 2001-11-22 Colin Walters <walters@debian.org> |
| @@ -14,7 +18,7 @@ | |||
| 14 | * calc/calc-misc.el (calc-info): Don't perform voodoo, just | 18 | * calc/calc-misc.el (calc-info): Don't perform voodoo, just |
| 15 | (info "Calc"). | 19 | (info "Calc"). |
| 16 | (report-calc-bug): Use reporter.el. | 20 | (report-calc-bug): Use reporter.el. |
| 17 | 21 | ||
| 18 | * mail/reporter.el (reporter-submit-bug-report): Doc fixes. | 22 | * mail/reporter.el (reporter-submit-bug-report): Doc fixes. |
| 19 | 23 | ||
| 20 | 2001-11-21 Richard M. Stallman <rms@gnu.org> | 24 | 2001-11-21 Richard M. Stallman <rms@gnu.org> |
| @@ -25,7 +29,7 @@ | |||
| 25 | (which-func-update): Handle all visible windows. | 29 | (which-func-update): Handle all visible windows. |
| 26 | (which-func-update-1): New subroutine broken out of which-func-update. | 30 | (which-func-update-1): New subroutine broken out of which-func-update. |
| 27 | 31 | ||
| 28 | * files.el (temporary-file-directory, null-device) | 32 | * files.el (temporary-file-directory, null-device) |
| 29 | (small-temporary-file-directory): Definitions moved up. | 33 | (small-temporary-file-directory): Definitions moved up. |
| 30 | 34 | ||
| 31 | * progmodes/cperl-mode.el (cperl-problems, cperl-tips) | 35 | * progmodes/cperl-mode.el (cperl-problems, cperl-tips) |
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." | |||
| 1482 | "if" | 1482 | "if" |
| 1483 | "ignore" | 1483 | "ignore" |
| 1484 | "set" | 1484 | "set" |
| 1485 | "source" | ||
| 1485 | "unset" | 1486 | "unset" |
| 1486 | ) | 1487 | ) |
| 1487 | '(("^\\s-*\\(alias\\|group\\)\\s-+\\([-A-Za-z0-9_]+\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$" | 1488 | '(("^\\s-*\\(alias\\|group\\)\\s-+\\([-A-Za-z0-9_]+\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$" |
| 1488 | (2 font-lock-constant-face) (3 font-lock-variable-name-face)) | 1489 | (2 font-lock-constant-face) (3 font-lock-variable-name-face)) |
| 1489 | ("^\\s-*\\(unset\\|set\\|ignore\\)\\s-+\\([-A-Za-z0-9_]+\\)=?\\([^\n\r#]*\\)\\(#.*\\)?$" | 1490 | ("^\\s-*\\(unset\\|set\\|ignore\\)\\s-+\\([-A-Za-z0-9_]+\\)=?\\([^\n\r#]*\\)\\(#.*\\)?$" |
| 1490 | (2 font-lock-constant-face) (3 font-lock-variable-name-face))) | 1491 | (2 font-lock-constant-face) (3 font-lock-variable-name-face)) |
| 1492 | ("^\\s-*\\(source\\)\\s-+\\([^\n\r#]*\\)\\(#.*\\)?$" | ||
| 1493 | (2 font-lock-variable-name-face))) | ||
| 1491 | (list "\\.mailrc\\'") | 1494 | (list "\\.mailrc\\'") |
| 1492 | nil | 1495 | nil |
| 1493 | "Mode for mailrc files.") | 1496 | "Mode for mailrc files.") |