diff options
| author | Dave Love | 2000-03-31 11:07:14 +0000 |
|---|---|---|
| committer | Dave Love | 2000-03-31 11:07:14 +0000 |
| commit | d951f8cb755d1833108bffc780e7ffb4943a88df (patch) | |
| tree | dac288845594343d67ae5ae23e206b1c563dec35 | |
| parent | de2d0942811573b0211d6d5419f2e8fa49aed4cd (diff) | |
| download | emacs-d951f8cb755d1833108bffc780e7ffb4943a88df.tar.gz emacs-d951f8cb755d1833108bffc780e7ffb4943a88df.zip | |
(outline-font-lock-keywords): Use :upper:
and :alpha: char classes.
| -rw-r--r-- | lisp/textmodes/ooutline.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/ooutline.el b/lisp/textmodes/ooutline.el index 8eee5de2f8f..f2a324bd0f1 100644 --- a/lisp/textmodes/ooutline.el +++ b/lisp/textmodes/ooutline.el | |||
| @@ -160,7 +160,7 @@ in the file it applies to." | |||
| 160 | font-lock-variable-name-face)) | 160 | font-lock-variable-name-face)) |
| 161 | nil t)) | 161 | nil t)) |
| 162 | ;; Highlight citations of the form [1] and [Mar94]. | 162 | ;; Highlight citations of the form [1] and [Mar94]. |
| 163 | ("\\[\\([A-Z][A-Za-z]+\\)*[0-9]+\\]" . font-lock-type-face)) | 163 | ("\\[\\([[:upper:]][[:alpha:]]+\\)*[0-9]+\\]" . font-lock-type-face)) |
| 164 | "Additional expressions to highlight in Outline mode.") | 164 | "Additional expressions to highlight in Outline mode.") |
| 165 | 165 | ||
| 166 | (defun outline-mode () | 166 | (defun outline-mode () |