diff options
| author | Lute Kamstra | 2005-04-06 08:44:14 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-04-06 08:44:14 +0000 |
| commit | 9e4b54a08477570d9e00f3a3f7de977e5dd6f36c (patch) | |
| tree | ec354aaed0627b9e3277a7337bed50bcfacc37fa | |
| parent | 2835df5f8b7c94b92e2806326ec0f1f442119338 (diff) | |
| download | emacs-9e4b54a08477570d9e00f3a3f7de977e5dd6f36c.tar.gz emacs-9e4b54a08477570d9e00f3a3f7de977e5dd6f36c.zip | |
(change-log-font-lock-keywords): Complete 2005-04-03 change.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/add-log.el | 12 |
2 files changed, 9 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4f2fc98e54a..42126072165 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -6,6 +6,9 @@ | |||
| 6 | 6 | ||
| 7 | 2005-04-06 Lute Kamstra <lute@gnu.org> | 7 | 2005-04-06 Lute Kamstra <lute@gnu.org> |
| 8 | 8 | ||
| 9 | * add-log.el (change-log-font-lock-keywords): Complete 2005-04-03 | ||
| 10 | change. | ||
| 11 | |||
| 9 | * emacs-lisp/copyright.el (copyright-update-year): Replace the | 12 | * emacs-lisp/copyright.el (copyright-update-year): Replace the |
| 10 | right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>. | 13 | right subexpression. Suggested by Jay Bingham <jay.bingham@hp.com>. |
| 11 | 14 | ||
diff --git a/lisp/add-log.el b/lisp/add-log.el index 126e7ecbaa5..2714df554b8 100644 --- a/lisp/add-log.el +++ b/lisp/add-log.el | |||
| @@ -225,8 +225,8 @@ Note: The search is conducted only within 10%, at the beginning of the file." | |||
| 225 | (2 'change-log-email-face))) | 225 | (2 'change-log-email-face))) |
| 226 | ;; | 226 | ;; |
| 227 | ;; File names. | 227 | ;; File names. |
| 228 | ("^\\(?: +\\|\t\\)\\* \\([^ ,:([\n]+\\)" | 228 | ("^\\( +\\|\t\\)\\* \\([^ ,:([\n]+\\)" |
| 229 | (1 'change-log-file-face) | 229 | (2 'change-log-file-face) |
| 230 | ;; Possibly further names in a list: | 230 | ;; Possibly further names in a list: |
| 231 | ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face)) | 231 | ("\\=, \\([^ ,:([\n]+\\)" nil nil (1 'change-log-file-face)) |
| 232 | ;; Possibly a parenthesized list of names: | 232 | ;; Possibly a parenthesized list of names: |
| @@ -236,8 +236,8 @@ Note: The search is conducted only within 10%, at the beginning of the file." | |||
| 236 | nil nil (1 'change-log-list-face))) | 236 | nil nil (1 'change-log-list-face))) |
| 237 | ;; | 237 | ;; |
| 238 | ;; Function or variable names. | 238 | ;; Function or variable names. |
| 239 | ("^\t(\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" | 239 | ("^\\( +\\|\t\\)(\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" |
| 240 | (1 'change-log-list-face) | 240 | (2 'change-log-list-face) |
| 241 | ("\\=, *\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" nil nil | 241 | ("\\=, *\\([^(),\n]+\\|(\\(setf\\|SETF\\) [^() ,\n]+)\\)" nil nil |
| 242 | (1 'change-log-list-face))) | 242 | (1 'change-log-list-face))) |
| 243 | ;; | 243 | ;; |
| @@ -250,8 +250,8 @@ Note: The search is conducted only within 10%, at the beginning of the file." | |||
| 250 | ;; Acknowledgements. | 250 | ;; Acknowledgements. |
| 251 | ;; Don't include plain "From" because that is vague; | 251 | ;; Don't include plain "From" because that is vague; |
| 252 | ;; we want to encourage people to say something more specific. | 252 | ;; we want to encourage people to say something more specific. |
| 253 | ("\\(^\t\\| \\)\\(Patch\\(es\\)? by\\|Report\\(ed by\\| from\\)\\|Suggest\\(ed by\\|ion from\\)\\)" | 253 | ("\\(^\\( +\\|\t\\)\\| \\)\\(Patch\\(es\\)? by\\|Report\\(ed by\\| from\\)\\|Suggest\\(ed by\\|ion from\\)\\)" |
| 254 | 2 'change-log-acknowledgement-face)) | 254 | 3 'change-log-acknowledgement-face)) |
| 255 | "Additional expressions to highlight in Change Log mode.") | 255 | "Additional expressions to highlight in Change Log mode.") |
| 256 | 256 | ||
| 257 | (defvar change-log-mode-map | 257 | (defvar change-log-mode-map |