]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix breakage from previous change
authorMark Oteiza <mvoteiza@udel.edu>
Wed, 29 Jun 2016 01:52:48 +0000 (21:52 -0400)
committerMark Oteiza <mvoteiza@udel.edu>
Wed, 29 Jun 2016 01:52:48 +0000 (21:52 -0400)
* lisp/textmodes/tex-mode.el (tex-font-lock-keywords-1):
* lisp/vc/log-view.el (log-view-font-lock-keywords): Quote face.

lisp/textmodes/tex-mode.el
lisp/vc/log-view.el

index bc5e5163fba82d66950251412434520b038d8c25..710899fa30ddcb431839a8a03a1794fe5f5391b5 100644 (file)
@@ -505,7 +505,7 @@ An alternative value is \" . \", if you use a font with a narrow period."
                   (funcall inbraces-re
                            (concat "{" (funcall inbraces-re "{[^}]*}") "*}"))
                   "*}\\)+\\$?\\$")
-         (0 tex-math))
+         (0 'tex-math))
         ;; Heading args.
         (,(concat slash headings "\\*?" opt arg)
          ;; If ARG ends up matching too much (if the {} don't match, e.g.)
index c77770bf4b0eb160ee3ce0b8e664f16cd0efa787..44b8e0b0f3ef1767571f5c99dde5737589830ee9 100644 (file)
@@ -241,8 +241,8 @@ The match group number 1 should match the revision number itself.")
   ;; and log-view-message-re, if applicable.
   '((eval . `(,log-view-file-re
               (1 (if (boundp 'cvs-filename-face) cvs-filename-face))
-              (0 log-view-file append)))
-    (eval . `(,log-view-message-re . log-view-message))))
+              (0 'log-view-file append)))
+    (eval . `(,log-view-message-re . 'log-view-message))))
 
 (defconst log-view-font-lock-defaults
   '(log-view-font-lock-keywords t nil nil nil))