diff lisp/progmodes/modula2.el @ 20953:f3f9df46d008

Changed font-lock-reference-face to font-lock-constant-face.
author Simon Marshall <simon@gnu.org>
date Fri, 20 Feb 1998 14:58:27 +0000
parents 11218164bc54
children 2f9b7d0689a9
line wrap: on
line diff
--- a/lisp/progmodes/modula2.el	Fri Feb 20 14:55:48 1998 +0000
+++ b/lisp/progmodes/modula2.el	Fri Feb 20 14:58:27 1998 +0000
@@ -171,7 +171,7 @@
      (1 font-lock-keyword-face)
      (font-lock-match-c-style-declaration-item-and-skip-to-next
       nil (goto-char (match-end 0))
-      (1 font-lock-reference-face)))
+      (1 font-lock-constant-face)))
     ;;
     ;; Pragmas as warnings.
     ;; Spencer Allain <sallain@teknowledge.com> says do them as comments...
@@ -224,7 +224,7 @@
 	   (1 font-lock-function-name-face)))
 	;;
 	;; Fontify constants as references.
-	'("\\<\\(FALSE\\|NIL\\|NULL\\|TRUE\\)\\>" . font-lock-reference-face)
+	'("\\<\\(FALSE\\|NIL\\|NULL\\|TRUE\\)\\>" . font-lock-constant-face)
 	))))
   "Gaudy level highlighting for Modula-3 modes.")