# HG changeset patch # User Juanma Barranquero # Date 1127728031 0 # Node ID 183bad3fad1ffe24a3cec9fb5b051d6778690bf2 # Parent 7d20cbe1d616863570b8e09bb8ebbb1d8253228a (tex-insert-quote, latex-indent): Quote face names. diff -r 7d20cbe1d616 -r 183bad3fad1f lisp/textmodes/tex-mode.el --- a/lisp/textmodes/tex-mode.el Mon Sep 26 09:41:32 2005 +0000 +++ b/lisp/textmodes/tex-mode.el Mon Sep 26 09:47:11 2005 +0000 @@ -1109,7 +1109,7 @@ inserts \" characters." (interactive "*P") (if (or arg (memq (char-syntax (preceding-char)) '(?/ ?\\)) - (eq (get-text-property (point) 'face) tex-verbatim) + (eq (get-text-property (point) 'face) 'tex-verbatim) (save-excursion (backward-char (length tex-open-quote)) (when (or (looking-at (regexp-quote tex-open-quote)) @@ -2341,7 +2341,7 @@ (defun latex-indent (&optional arg) (if (and (eq (get-text-property (line-beginning-position) 'face) - tex-verbatim)) + 'tex-verbatim)) 'noindent (with-syntax-table tex-latex-indent-syntax-table ;; TODO: Rather than ignore $, we should try to be more clever about it.