diff options
author | Simon Marshall <simon@gnu.org> | 1998-02-20 14:58:27 +0000 |
---|---|---|
committer | Simon Marshall <simon@gnu.org> | 1998-02-20 14:58:27 +0000 |
commit | 883212ce6905a2bde30bf2dd5eb647a09fd597c4 (patch) | |
tree | 163701513d947fad31df18ea7a25bc8cac2392b1 /lisp/progmodes/scheme.el | |
parent | b6908641f2bd7e8df922058478086a0f0372b065 (diff) | |
download | emacs-883212ce6905a2bde30bf2dd5eb647a09fd597c4.tar.gz |
Changed font-lock-reference-face to font-lock-constant-face.
Diffstat (limited to 'lisp/progmodes/scheme.el')
-rw-r--r-- | lisp/progmodes/scheme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/scheme.el b/lisp/progmodes/scheme.el index 4342b420171..302f634362f 100644 --- a/lisp/progmodes/scheme.el +++ b/lisp/progmodes/scheme.el @@ -345,7 +345,7 @@ if that value is non-nil and inserts the value of '("(\\(element\\)\\>[ ]*(\\(\\S)+\\))" (1 font-lock-keyword-face) (2 font-lock-type-face)) - '("\\<\\sw+:\\>" . font-lock-reference-face) ; trailing `:' c.f. scheme + '("\\<\\sw+:\\>" . font-lock-constant-face) ; trailing `:' c.f. scheme ;; SGML markup (from sgml-mode) : '("<\\([!?][-a-z0-9]+\\)" 1 font-lock-keyword-face) '("<\\(/?[-a-z0-9]+\\)" 1 font-lock-function-name-face))) |