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/simula.el | |
parent | b6908641f2bd7e8df922058478086a0f0372b065 (diff) | |
download | emacs-883212ce6905a2bde30bf2dd5eb647a09fd597c4.tar.gz |
Changed font-lock-reference-face to font-lock-constant-face.
Diffstat (limited to 'lisp/progmodes/simula.el')
-rw-r--r-- | lisp/progmodes/simula.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/simula.el b/lisp/progmodes/simula.el index c329e8b554c..33817300b1e 100644 --- a/lisp/progmodes/simula.el +++ b/lisp/progmodes/simula.el @@ -141,7 +141,7 @@ for SIMULA mode to function correctly.") (if (match-beginning 1) font-lock-string-face font-lock-comment-face)) ;; ;; Compiler directives. - '("^%\\([^ \t\n].*\\)" 1 font-lock-reference-face) + '("^%\\([^ \t\n].*\\)" 1 font-lock-constant-face) ;; ;; Class and procedure names. '("\\<\\(class\\|procedure\\)\\>[ \t]*\\(\\sw+\\)?" @@ -153,8 +153,8 @@ for SIMULA mode to function correctly.") (append simula-font-lock-keywords-1 (list ;; - ;; Constants as references. - '("\\<\\(false\\|none\\|notext\\|true\\)\\>" . font-lock-reference-face) + ;; Constants. + '("\\<\\(false\\|none\\|notext\\|true\\)\\>" . font-lock-constant-face) ;; ;; Keywords. (concat "\\<\\(" |