Skip to content

Commit c9cfea0

Browse files
committed
Revert "Stop using obsolete font lock variables"
This reverts commit c0e8f16.
1 parent a177a72 commit c9cfea0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

gnuplot.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -940,13 +940,13 @@ These are highlighted using `font-lock-constant-face'.")
940940

941941
;; built-in function names
942942
(cons (gnuplot-make-regexp gnuplot-keywords-builtin-functions)
943-
'font-lock-function-name-face)
943+
font-lock-function-name-face)
944944

945945
;; reserved words associated with plotting <AL>
946946
(cons (gnuplot-make-regexp gnuplot-keywords-plotting)
947-
'font-lock-type-face)
947+
font-lock-type-face)
948948
(cons (gnuplot-make-regexp gnuplot-keywords-plotting-styles)
949-
'font-lock-function-name-face)
949+
font-lock-function-name-face)
950950

951951
;; (s)plot -- also thing (s)plotted
952952
'("\\<s?plot\\>" . font-lock-keyword-face)
@@ -955,8 +955,8 @@ These are highlighted using `font-lock-constant-face'.")
955955

956956
;; other common commands
957957
(cons (gnuplot-make-regexp gnuplot-keywords-misc)
958-
'font-lock-constant-face)
959-
(cons "!.*$" 'font-lock-constant-face))) ; what is this for? jjo
958+
font-lock-constant-face)
959+
(cons "!.*$" font-lock-constant-face))) ; what is this for? jjo
960960

961961
(defvar gnuplot-font-lock-defaults
962962
'(gnuplot-font-lock-keywords

0 commit comments

Comments
 (0)