]> git.eshelyaron.com Git - emacs.git/commitdiff
Changed font-lock-reference-face to font-lock-constant-face.
authorSimon Marshall <simon@gnu.org>
Fri, 20 Feb 1998 14:58:27 +0000 (14:58 +0000)
committerSimon Marshall <simon@gnu.org>
Fri, 20 Feb 1998 14:58:27 +0000 (14:58 +0000)
26 files changed:
lisp/add-log.el
lisp/dired.el
lisp/emacs-lisp/checkdoc.el
lisp/help.el
lisp/ielm.el
lisp/mail/rmail.el
lisp/mail/sendmail.el
lisp/play/decipher.el
lisp/progmodes/ada-mode.el
lisp/progmodes/awk-mode.el
lisp/progmodes/cperl-mode.el
lisp/progmodes/f90.el
lisp/progmodes/fortran.el
lisp/progmodes/icon.el
lisp/progmodes/make-mode.el
lisp/progmodes/meta-mode.el
lisp/progmodes/modula2.el
lisp/progmodes/octave-mod.el
lisp/progmodes/pascal.el
lisp/progmodes/perl-mode.el
lisp/progmodes/scheme.el
lisp/progmodes/simula.el
lisp/ps-print.el
lisp/textmodes/bibtex.el
lisp/textmodes/outline.el
lisp/textmodes/reftex.el

index 62b2ef4885fc6d7dc990e123722c440d6de17516..2d37293d3d55e6a86beb2209226b386059a85d0e 100644 (file)
@@ -106,7 +106,7 @@ for file A.
     ("^\\sw.........[0-9: ]*"
      (0 font-lock-string-face)
      ("\\([^<]+\\)<\\([A-Za-z0-9_.-]+@[A-Za-z0-9_.-]+\\)>" nil nil
-      (1 font-lock-reference-face)
+      (1 font-lock-constant-face)
       (2 font-lock-variable-name-face)))
     ;;
     ;; File names.
index 6c37eccfb9eaee0fa85dc243815d16a6b2870463..82e5c2d1332df9151e6e7219aacf6abe1a3708ae 100644 (file)
@@ -259,7 +259,7 @@ Subexpression 2 must end right before the \\n or \\r.")
    ;;
    ;; Dired marks.
    (list dired-re-mark
-        '(0 font-lock-reference-face)
+        '(0 font-lock-constant-face)
         '(".+" (dired-move-to-filename) nil (0 font-lock-warning-face)))
    ;; People who are paranoid about security would consider this more
    ;; important than other things such as whether it is a directory.
index 31e090d33fb05481bb775a73806bf157fed1940c..38b78f4e2179f2ce879efb471ea4176ded63e890 100644 (file)
@@ -1680,7 +1680,7 @@ This function returns non-nil if the text was replaced."
 (defvar checkdoc-output-font-lock-keywords
   '(("\\(\\w+\\.el\\):" 1 font-lock-function-name-face)
     ("style check: \\(\\w+\\)" 1 font-lock-comment-face)
-    ("^\\([0-9]+\\):" 1 font-lock-reference-face))
+    ("^\\([0-9]+\\):" 1 font-lock-constant-face))
   "Keywords used to highlight a checkdoc diagnostic buffer.")
 
 (defvar checkdoc-output-mode-map nil
index 48eaba0b7e6129ce760f9a11c27a66164ef554c6..86c2f75b852ff111d037a01250582d2718012962 100644 (file)
        ;;
        ;; Words inside `' which tend to be symbol names.
        (list (concat "`\\(" sym-char sym-char "+\\)'")
-            1 'font-lock-reference-face t)
+            1 'font-lock-constant-face t)
        ;;
-       ;; CLisp `:' keywords as references.
-       (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-reference-face t))))
+       ;; CLisp `:' keywords as builtins.
+       (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-builtin-face t))))
   "Default expressions to highlight in Help mode.")
 
 (defun help-mode ()
index 83fc9e1eea4645f78969f7c9262ac58b459ce763..d891ec79453de8f64ba867273e1ecd17c9ed46aa 100644 (file)
@@ -130,7 +130,9 @@ This variable is buffer-local.")
 (defvar ielm-font-lock-keywords
   (list 
    (cons (concat "^" (regexp-quote ielm-prompt)) 'font-lock-keyword-face)
-   '("\\(^\\*\\*\\*[^*]+\\*\\*\\*\\)\\(.*$\\)" (1 font-lock-comment-face) (2 font-lock-reference-face)))
+   '("\\(^\\*\\*\\*[^*]+\\*\\*\\*\\)\\(.*$\\)"
+     (1 font-lock-comment-face)
+     (2 font-lock-constant-face)))
   "Additional expressions to highlight in ielm buffers.")
        
 ;;; Completion stuff
index d55e11dbb0e7f164cbfb041bbfa8317fe39e436e..ef55e63dda63ba2e4be5bcf68d140001af14dd36 100644 (file)
@@ -286,7 +286,7 @@ by substituting the new message number into the existing list.")
                        "\\(" cite-chars "[ \t]*\\)\\)+"
                        "\\(.*\\)")
               (beginning-of-line) (end-of-line)
-              (2 font-lock-reference-face nil t)
+              (2 font-lock-constant-face nil t)
               (4 font-lock-comment-face nil t)))
            '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\|Date\\):.*$"
              . font-lock-string-face))))
index 33795b0b5bf5ae29e65d34c5100d2accbc562a4d..8d93200c26475d6103caaa34d49f446c1e7e23df 100644 (file)
@@ -239,7 +239,7 @@ actually occur.")
                        "\\(" cite-chars "[ \t]*\\)\\)+"
                        "\\(.*\\)")
               (beginning-of-line) (end-of-line)
-              (2 font-lock-reference-face nil t)
+              (2 font-lock-constant-face nil t)
               (4 font-lock-comment-face nil t)))
            '("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*"
              . font-lock-string-face))))
index f7d07ae13f39c52a305e53b3ab939dbf7f0f9a60..307ac0d17322add3500fd0af205456ef559eda3a 100644 (file)
@@ -116,7 +116,7 @@ the tail of the list.")
 (defvar decipher-font-lock-keywords
   '(("^:.*"  . font-lock-keyword-face)
     ("^>.*"  . font-lock-string-face)
-    ("^%!.*" . font-lock-reference-face)
+    ("^%!.*" . font-lock-constant-face)
     ("^%.*"  . font-lock-comment-face)
     ("\\`(\\([a-z]+\\) +\\([A-Z]+\\)"
      (1 font-lock-string-face)
@@ -128,7 +128,7 @@ the tail of the list.")
 
 Ciphertext uses `font-lock-keyword-face', plaintext uses
 `font-lock-string-face', comments use `font-lock-comment-face', and
-checkpoints use `font-lock-reference-face'.  You can customize the
+checkpoints use `font-lock-constant-face'.  You can customize the
 display by changing these variables.  For best results, I recommend
 that all faces use the same background color.
 
index c248227190b7ed4763220a2dfddd66fafbc90c85..8614ca4421af0eae7c0aa237793757ce6af38510 100644 (file)
@@ -3797,10 +3797,10 @@ If that is the case remember the name of that function."
     (list (concat "\\<\\(goto\\|raise\\|use\\|with\\)\\>" ; "when" removed
                   ; "[ \t]*\\(\\sw+\\(\\.\\sw*\\)*\\)?") ; RE
                   "[ \t]*\\([a-zA-Z0-9_\\.\\|, ]+\\)\\W")
-          '(1 font-lock-keyword-face) '(2 font-lock-reference-face nil t))
+          '(1 font-lock-keyword-face) '(2 font-lock-constant-face nil t))
     ;;
     ;; Goto tags.
-    '("<<\\(\\sw+\\)>>" 1 font-lock-reference-face)
+    '("<<\\(\\sw+\\)>>" 1 font-lock-constant-face)
     ))
   "Gaudy level highlighting for Ada mode.")
 
index 67ec6dedfb676f8898148f9ae4c072849dbcb80a..06fcef0f1071b512c70099ac9b3a60844ab4da34 100644 (file)
      (cons (mapconcat 'identity
                      '("&&" "||" "<=" "<" ">=" ">" "==" "!=" "!~" "~")
                      "\\|")
-          'font-lock-reference-face)
+          'font-lock-constant-face)
      ))
  "Default expressions to highlight in AWK mode.")
 
index 6285af4b45ece3f2a62a81792d983a0e434d9efb..8dee6a6dfe521a8a06e29dabdce8d5f2ecd99ab3 100644 (file)
@@ -2324,7 +2324,7 @@ the sections using `cperl-pod-head-face', `cperl-pod-face',
                  (setq tag (buffer-substring b1 e1)
                        qtag (regexp-quote tag))
                  (cond (cperl-pod-here-fontify 
-                        (put-text-property b1 e1 'face font-lock-reference-face)
+                        (put-text-property b1 e1 'face font-lock-constant-face)
                         (cperl-put-do-not-fontify b1 e1)))
                  (forward-line)
                  (setq b (point))
@@ -2332,7 +2332,7 @@ the sections using `cperl-pod-head-face', `cperl-pod-face',
                         (if cperl-pod-here-fontify 
                             (progn
                               (put-text-property (match-beginning 0) (match-end 0) 
-                                                 'face font-lock-reference-face)
+                                                 'face font-lock-constant-face)
                               (cperl-put-do-not-fontify b (match-end 0))
                               ;;(put-text-property (max (point-min) (1- b))
                               ;;                     (min (point-max)
@@ -2628,7 +2628,7 @@ the sections using `cperl-pod-head-face', `cperl-pod-face',
 ;;;          (setq tag (buffer-substring b1 e1)
 ;;;                qtag (regexp-quote tag))
 ;;;          (cond (cperl-pod-here-fontify 
-;;;                 (put-text-property b1 e1 'face font-lock-reference-face)
+;;;                 (put-text-property b1 e1 'face font-lock-constant-face)
 ;;;                 (cperl-put-do-not-fontify b1 e1)))
 ;;;          (forward-line)
 ;;;          (setq b (point))
@@ -2636,7 +2636,7 @@ the sections using `cperl-pod-head-face', `cperl-pod-face',
 ;;;                 (if cperl-pod-here-fontify 
 ;;;                     (progn
 ;;;                       (put-text-property (match-beginning 0) (match-end 0) 
-;;;                                          'face font-lock-reference-face)
+;;;                                          'face font-lock-constant-face)
 ;;;                       (cperl-put-do-not-fontify b (match-end 0))
 ;;;                       ;;(put-text-property (max (point-min) (1- b))
 ;;;                       ;;                 (min (point-max)
@@ -3294,9 +3294,9 @@ indentation and initial hashes.  Behaves usually outside of comment."
            '("[ \t{,(]\\(-?[a-zA-Z0-9_:]+\\)[ \t]*=>" 1
              font-lock-string-face t)
            '("^[ \t]*\\([a-zA-Z0-9_]+[ \t]*:\\)[ \t]*\\($\\|{\\|\\<\\(until\\|while\\|for\\(each\\)?\\|do\\)\\>\\)" 1 
-             font-lock-reference-face) ; labels
+             font-lock-constant-face) ; labels
            '("\\<\\(continue\\|next\\|last\\|redo\\|goto\\)\\>[ \t]+\\([a-zA-Z0-9_:]+\\)" ; labels as targets
-             2 font-lock-reference-face)
+             2 font-lock-constant-face)
            (cond ((featurep 'font-lock-extra)
                   '("^[ \t]*\\(my\\|local\\)[ \t]*\\(([ \t]*\\)?\\([$@%*][a-zA-Z0-9_:]+\\)\\([ \t]*,\\)?"
                     (3 font-lock-variable-name-face)
@@ -3394,7 +3394,7 @@ indentation and initial hashes.  Behaves usually outside of comment."
                    nil
                    [nil                nil             t               t       t]
                    )
-             (list 'font-lock-reference-face
+             (list 'font-lock-constant-face
                    ["CadetBlue"        "Aquamarine"    "Gray50"        "LightGray"]
                    nil
                    [nil                nil             t               t       t]
@@ -3432,7 +3432,7 @@ indentation and initial hashes.  Behaves usually outside of comment."
                      ((fboundp 'valid-color-name-p) 'valid-color-name-p)
                      ;; XEmacs 19.11
                      (t 'x-valid-color-name-p))))
-         (defvar font-lock-reference-face 'font-lock-reference-face)
+         (defvar font-lock-constant-face 'font-lock-constant-face)
          (defvar font-lock-variable-name-face 'font-lock-variable-name-face)
          (or (boundp 'font-lock-type-face)
              (defconst font-lock-type-face
@@ -3572,8 +3572,8 @@ indentation and initial hashes.  Behaves usually outside of comment."
               (t (set-face-background 'font-lock-emphasized-face "gray90"))))
            (if (is-face 'font-lock-variable-name-face) nil
              (copy-face 'italic 'font-lock-variable-name-face))
-           (if (is-face 'font-lock-reference-face) nil
-             (copy-face 'italic 'font-lock-reference-face))))
+           (if (is-face 'font-lock-constant-face) nil
+             (copy-face 'italic 'font-lock-constant-face))))
        (setq cperl-faces-init t))
     (error nil)))
 
index 85d0901dabd945587a256e546bea1ee87a355012..c851f2091ee173433063fb55f7921682f4931d50 100644 (file)
@@ -388,21 +388,21 @@ whether to blink the matching beginning."
         (1 font-lock-type-face) (4 font-lock-variable-name-face))
        ;; do, if, select, where, and forall constructs
        '("\\<\\(end[ \t]*\\(do\\|if\\|select\\|forall\\|where\\)\\)\\>\\([ \t]+\\(\\sw+\\)\\)?"
-        (1 font-lock-keyword-face) (3 font-lock-reference-face nil t))
+        (1 font-lock-keyword-face) (3 font-lock-constant-face nil t))
        '("^[ \t0-9]*\\(\\(\\sw+\\)[ \t]*:[ \t]*\\)?\\(\\(if\\|do\\([ \t]*while\\)?\\|select[ \t]*case\\|where\\|forall\\)\\)\\>"
-        (2 font-lock-reference-face nil t) (3 font-lock-keyword-face))
+        (2 font-lock-constant-face nil t) (3 font-lock-keyword-face))
        ;; implicit declaration
        '("\\<\\(implicit\\)[ \t]*\\(real\\|integer\\|c\\(haracter\\|omplex\\)\\|logical\\|type[ \t]*(\\sw+)\\|none\\)\\>" (1 font-lock-keyword-face) (2 font-lock-type-face))
-       '("\\<\\(namelist\\|common\\)[ \t]*\/\\(\\sw+\\)?\/" (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))
+       '("\\<\\(namelist\\|common\\)[ \t]*\/\\(\\sw+\\)?\/" (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
        "\\<else\\([ \t]*if\\|where\\)?\\>"
        "\\<\\(then\\|continue\\|format\\|include\\|stop\\|return\\)\\>"
        '("\\<\\(exit\\|cycle\\)[ \t]*\\(\\sw+\\)?\\>" 
-        (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))
+        (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
        '("\\<\\(case\\)[ \t]*\\(default\\|(\\)" . 1)
        '("\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)"
-        (1 font-lock-keyword-face) (2 font-lock-reference-face))
+        (1 font-lock-keyword-face) (2 font-lock-constant-face))
        ;; line numbers (lines whose first character after number is letter)
-       '("^[ \t]*\\([0-9]+\\)[ \t]*[a-z]+" (1 font-lock-reference-face t))))
+       '("^[ \t]*\\([0-9]+\\)[ \t]*[a-z]+" (1 font-lock-constant-face t))))
   "Highlights declarations, do-loops and other constructions")
 
 (defvar f90-font-lock-keywords-3
index 58495fbf54192290d978b0a5de093dfb95176310..253134636d4e83b7ed9aef1a10561f05843a5950 100644 (file)
@@ -326,8 +326,8 @@ style.")
      ;; Fontify do/goto keywords and targets, and goto tags.
      (list "\\<\\(do\\|go *to\\)\\>[ \t]*\\([0-9]+\\)?"
           '(1 font-lock-keyword-face)
-          '(2 font-lock-reference-face nil t))
-     (cons "^ *\\([0-9]+\\)" 'font-lock-reference-face))))
+          '(2 font-lock-constant-face nil t))
+     (cons "^ *\\([0-9]+\\)" 'font-lock-constant-face))))
 
   (setq fortran-font-lock-keywords-3
    (append
@@ -354,7 +354,7 @@ style.")
      ;;
      ;; Fontify goto-like `err=label'/`end=label' in read/write statements.
      '(", *\\(e\\(nd\\|rr\\)\\)\\> *\\(= *\\([0-9]+\\)\\)?"
-       (1 font-lock-keyword-face) (4 font-lock-reference-face nil t))
+       (1 font-lock-keyword-face) (4 font-lock-constant-face nil t))
      ;;
      ;; Highlight standard continuation character and in a TAB-formatted line.
      '("^     \\([^ 0]\\)" 1 font-lock-string-face)
index 2dbd9a3a72617eb113693a2c93323257c1b56971..dc72fbe07ffa88ef0107e29c5132817985e97c17 100644 (file)
@@ -659,7 +659,7 @@ Returns nil if line starts inside a string, t if in a comment."
          "&progname" "&random" "&rdrag" "&regions" "&resize" "&row" 
          "&rpress" "&rrelease" "&shift" "&source" "&storage" "&subject" 
          "&time" "&trace" "&ucase" "&version" "&window" "&x" "&y") t)
-       'font-lock-reference-face)
+       'font-lock-constant-face)
       (cons      ;; global local static declarations and link files
        (concat 
        "^[ \t]*"
index a00b7aa7c9d6e7df480d6f27ddb01c144c231ae6..f7b51ad1faca2a9e13ee39d36f7c726b5b4037a6 100644 (file)
@@ -263,7 +263,7 @@ not be enclosed in { } or ( )."
    (list makefile-dependency-regex 1 'font-lock-function-name-face)
    ;;
    ;; Variable references even in targets/strings/comments:
-   '("\\$[({]\\([-a-zA-Z0-9_.]+\\)[}):]" 1 font-lock-reference-face prepend)
+   '("\\$[({]\\([-a-zA-Z0-9_.]+\\)[}):]" 1 font-lock-constant-face prepend)
 
    ;; Highlight lines that contain just whitespace.
    ;; They can cause trouble, especially if they start with a tab.
index f5df9bfec6ce3029cf0e322f04e53a2a2c7334d8..fff1a39e7a527f27d698cd73cfaf70ae50650af9 100644 (file)
          (cons (concat "\\<" input-keywords "\\>"
                        "[ \t]+\\(\\sw+\\)")
                '((1 font-lock-keyword-face)
-                 (2 font-lock-reference-face)))
+                 (2 font-lock-constant-face)))
          ;; embedded Metafont/MetaPost code in comments
          (cons "|\\([^|]+\\)|" 
-               '(1 font-lock-reference-face t))
+               '(1 font-lock-constant-face t))
      ))
   "Default expressions to highlight in Metafont or MetaPost mode.")
 
index a21a5f5d7d3647c365531e66a5e8bb9e01466641..da67a7850a4d2d0a0a59d6f770873a2965abeef5 100644 (file)
@@ -171,7 +171,7 @@ followed by the first character of the construct.
      (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 @@ followed by the first character of the construct.
           (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.")
 
index b53794280eaa59bc45086a091fe4b73eda9caddb..e8f3724689b718856efda1f753b604b43f3f85ed 100644 (file)
@@ -175,7 +175,7 @@ parenthetical grouping.")
         'font-lock-keyword-face)
    ;; Fontify all builtin operators.
    (cons "\\(&\\||\\|<=\\|>=\\|==\\|<\\|>\\|!=\\|!\\)"
-        'font-lock-reference-face)
+        'font-lock-builtin-face)
    ;; Fontify all builtin variables.
    (cons (concat "\\<\\("
                 (mapconcat 'identity octave-variables "\\|")
index d2ef2d2b283d4ff4ea69bb458992e8cfdfc6df6a..11ebe75b66c69a4c9a50e36df7a718fe50a55043 100644 (file)
    (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")
index 42eecbde7c83ad94a92019a16c3f8e08b035476e..b0b5a74cbea185cf07f2373fbc1f8ec365b53166 100644 (file)
@@ -171,15 +171,15 @@ The expansion is entirely correct because it uses the C preprocessor."
     ("^#[ \t]*define[ \t]+\\(\\sw+\\)(" 1 font-lock-function-name-face)
     ("^#[ \t]*if\\>"
      ("\\<\\(defined\\)\\>[ \t]*(?\\(\\sw+\\)?" nil nil
-      (1 font-lock-reference-face) (2 font-lock-variable-name-face nil t)))
+      (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t)))
     ("^#[ \t]*\\(\\sw+\\)\\>[ \t]*\\(\\sw+\\)?"
-     (1 font-lock-reference-face) (2 font-lock-variable-name-face nil t))
+     (1 font-lock-constant-face) (2 font-lock-variable-name-face nil t))
     ;;
     ;; Fontify function and package names in declarations.
     ("\\<\\(package\\|sub\\)\\>[ \t]*\\(\\sw+\\)?"
      (1 font-lock-keyword-face) (2 font-lock-function-name-face nil t))
     ("\\<\\(import\\|no\\|require\\|use\\)\\>[ \t]*\\(\\sw+\\)?"
-     (1 font-lock-keyword-face) (2 font-lock-reference-face nil t)))
+     (1 font-lock-keyword-face) (2 font-lock-constant-face nil t)))
   "Subdued level highlighting for Perl mode.")
 
 (defconst perl-font-lock-keywords-2
@@ -206,12 +206,12 @@ The expansion is entirely correct because it uses the C preprocessor."
     '("[$*]{?\\(\\sw+\\)" 1 font-lock-variable-name-face)
     '("\\([@%]\\|\\$#\\)\\(\\sw+\\)"
       (2 (cons font-lock-variable-name-face '(underline))))
-    '("<\\(\\sw+\\)>" 1 font-lock-reference-face)
+    '("<\\(\\sw+\\)>" 1 font-lock-constant-face)
     ;;
     ;; Fontify keywords with/and labels as we do in `c++-font-lock-keywords'.
     '("\\<\\(continue\\|goto\\|last\\|next\\|redo\\)\\>[ \t]*\\(\\sw+\\)?"
-      (1 font-lock-keyword-face) (2 font-lock-reference-face nil t))
-    '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-reference-face)))
+      (1 font-lock-keyword-face) (2 font-lock-constant-face nil t))
+    '("^[ \t]*\\(\\sw+\\)[ \t]*:[^:]" 1 font-lock-constant-face)))
   "Gaudy level highlighting for Perl mode.")
 
 (defvar perl-font-lock-keywords perl-font-lock-keywords-1
index 4342b420171f1b22cdbacfb1d4e033ab4c773acc..302f634362fbf3274f1fb9ab404caf1141763de7 100644 (file)
@@ -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)))
index c329e8b554cc79f85296b8d7eec0de43cd718abb..33817300b1eeeac738b68fcca782628b47fb5d51 100644 (file)
@@ -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 "\\<\\("
index 4af13e942382b6472b16161acb0065d02728ce19..1228a464db9618a5f5eea3d4451fa56749cb5913 100644 (file)
@@ -1278,7 +1278,7 @@ This applies to generating PostScript."
 (defcustom ps-underlined-faces
   (unless ps-print-color-p
     '(font-lock-function-name-face
-      font-lock-reference-face
+      font-lock-constant-face
       font-lock-warning-face))
   "*A list of the \(non-underlined\) faces that should be printed underlined.
 This applies to generating PostScript."
index 6b01e8486648d8183babc625c4fb3d8d2d1667bd..2020d6e2fd594f273dd6416ed4c26d433611b439 100644 (file)
@@ -1118,7 +1118,7 @@ the value of `bibtex-text-indentation', minus 2."
    ;; reference type and reference label
    (list bibtex-reference-maybe-empty-head
          (list bibtex-type-in-head 'font-lock-function-name-face)
-         (list bibtex-key-in-head 'font-lock-reference-face nil t))
+         (list bibtex-key-in-head 'font-lock-constant-face nil t))
    ;; comments
    (list 
     (concat "^\\([ \t]*" bibtex-comment-start ".*\\)$")
index 3debce3e189597edee12a14b9775876c850a3b08..07b704cc2dfabb37ae2f17801a3e47260f0f5109 100644 (file)
@@ -156,7 +156,7 @@ in the file it applies to."
                                      (3 . font-lock-keyword-face)
                                      (4 . font-lock-builtin-face)
                                      (5 . font-lock-comment-face)
-                                     (6 . font-lock-reference-face)
+                                     (6 . font-lock-constant-face)
                                      (7 . font-lock-type-face)
                                      (8 . font-lock-string-face))))
                         font-lock-warning-face)
index 7668381c311527b2bf02b3ed20c33270a63c715f..7ef86a5af6b7678f0febb4580a104a63aa7dbfe1 100644 (file)
@@ -2699,7 +2699,7 @@ When called with 2 C-u prefix args, disable magic word recognition."
              (- (point) (length label)) (point)
              'face (if comment
                        'font-lock-comment-face
-                     'font-lock-reference-face)))
+                     'font-lock-constant-face)))
 
           (insert (if counter (format " (%d) " cnt) "")
                   (if comment " LABEL IS COMMENTED OUT " "")
@@ -4114,7 +4114,7 @@ started with the command \\[reftex-citation].")
                          authors)
       (put-text-property 0 (length title)   'face 'font-lock-comment-face
                          title)
-      (put-text-property 0 (length extra)   'face 'font-lock-reference-face
+      (put-text-property 0 (length extra)   'face 'font-lock-constant-face
                          extra))
     (concat key "\n     " authors " " year " " extra "\n     " title "\n\n")))