[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/textmodes/tex-mode.el
From: |
Lute Kamstra |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/textmodes/tex-mode.el |
Date: |
Fri, 27 May 2005 08:59:59 -0400 |
Index: emacs/lisp/textmodes/tex-mode.el
diff -c emacs/lisp/textmodes/tex-mode.el:1.162
emacs/lisp/textmodes/tex-mode.el:1.163
*** emacs/lisp/textmodes/tex-mode.el:1.162 Sat Apr 23 16:45:07 2005
--- emacs/lisp/textmodes/tex-mode.el Fri May 27 12:59:58 2005
***************
*** 643,661 ****
(defface superscript
'((t :height 0.8)) ;; :raise 0.3
! "Face used for superscripts.")
(defface subscript
'((t :height 0.8)) ;; :raise -0.3
! "Face used for subscripts.")
(defface tex-math-face
'((t :inherit font-lock-string-face))
! "Face used to highlight TeX math expressions.")
(defvar tex-math-face 'tex-math-face)
(defface tex-verbatim-face
;; '((t :inherit font-lock-string-face))
'((t :family "courier"))
! "Face used to highlight TeX verbatim environments.")
(defvar tex-verbatim-face 'tex-verbatim-face)
;; Use string syntax but math face for $...$.
--- 643,665 ----
(defface superscript
'((t :height 0.8)) ;; :raise 0.3
! "Face used for superscripts."
! :group 'tex)
(defface subscript
'((t :height 0.8)) ;; :raise -0.3
! "Face used for subscripts."
! :group 'tex)
(defface tex-math-face
'((t :inherit font-lock-string-face))
! "Face used to highlight TeX math expressions."
! :group 'tex)
(defvar tex-math-face 'tex-math-face)
(defface tex-verbatim-face
;; '((t :inherit font-lock-string-face))
'((t :family "courier"))
! "Face used to highlight TeX verbatim environments."
! :group 'tex)
(defvar tex-verbatim-face 'tex-verbatim-face)
;; Use string syntax but math face for $...$.
***************
*** 1623,1629 ****
(defcustom tex-use-reftex t
"If non-nil, use RefTeX's list of files to determine what command to use."
! :type 'boolean)
(defvar tex-compile-commands
'(((concat "pdf" tex-command
--- 1627,1634 ----
(defcustom tex-use-reftex t
"If non-nil, use RefTeX's list of files to determine what command to use."
! :type 'boolean
! :group 'tex)
(defvar tex-compile-commands
'(((concat "pdf" tex-command
- [Emacs-diffs] Changes to emacs/lisp/textmodes/tex-mode.el,
Lute Kamstra <=