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/pascal.el | |
parent | b6908641f2bd7e8df922058478086a0f0372b065 (diff) | |
download | emacs-883212ce6905a2bde30bf2dd5eb647a09fd597c4.tar.gz |
Changed font-lock-reference-face to font-lock-constant-face.
Diffstat (limited to 'lisp/progmodes/pascal.el')
-rw-r--r-- | lisp/progmodes/pascal.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/pascal.el b/lisp/progmodes/pascal.el index d2ef2d2b283..11ebe75b66c 100644 --- a/lisp/progmodes/pascal.el +++ b/lisp/progmodes/pascal.el @@ -164,7 +164,7 @@ (cons (concat "\\<\\(array\\|boolean\\|c\\(har\\|onst\\)\\|file\\|" "integer\\|re\\(al\\|cord\\)\\|type\\|var\\)\\>") 'font-lock-type-face) - '("\\<\\(label\\|external\\|forward\\)\\>" . font-lock-reference-face) + '("\\<\\(label\\|external\\|forward\\)\\>" . font-lock-constant-face) '("\\<\\([0-9]+\\)[ \t]*:" 1 font-lock-function-name-face) ; ("of" "to" "for" "if" "then" "else" "case" "while" ; "do" "until" "and" "or" "not" "in" "with" "repeat" "begin" "end") |