diff options
author | Dave Love <fx@gnu.org> | 2000-03-31 11:07:14 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-03-31 11:07:14 +0000 |
commit | d951f8cb755d1833108bffc780e7ffb4943a88df (patch) | |
tree | dac288845594343d67ae5ae23e206b1c563dec35 | |
parent | de2d0942811573b0211d6d5419f2e8fa49aed4cd (diff) | |
download | emacs-d951f8cb755d1833108bffc780e7ffb4943a88df.tar.gz |
(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." font-lock-variable-name-face)) nil t)) ;; Highlight citations of the form [1] and [Mar94]. - ("\\[\\([A-Z][A-Za-z]+\\)*[0-9]+\\]" . font-lock-type-face)) + ("\\[\\([[:upper:]][[:alpha:]]+\\)*[0-9]+\\]" . font-lock-type-face)) "Additional expressions to highlight in Outline mode.") (defun outline-mode () |