(superscript, subscript, tex-math-face)
(tex-verbatim-face, tex-use-reftex): Specify customization group.
This commit is contained in:
parent
dc11bf767a
commit
18a8c7738b
2 changed files with 16 additions and 14 deletions
|
@ -1,15 +1,12 @@
|
|||
2005-05-27 Lute Kamstra <lute@gnu.org>
|
||||
|
||||
* textmodes/sgml-mode.el (sgml-namespace-face): Specify
|
||||
customization group.
|
||||
|
||||
* textmodes/dns-mode.el (dns-mode): Specify customization group.
|
||||
|
||||
* calc/calc.el (calc): Specify customization group.
|
||||
|
||||
* calc/calc.el (calc):
|
||||
* outline.el (outline-1, outline-2, outline-3, outline-4)
|
||||
(outline-5, outline-6, outline-7, outline-8): Specify
|
||||
customization group.
|
||||
(outline-5, outline-6, outline-7, outline-8):
|
||||
* textmodes/dns-mode.el (dns-mode):
|
||||
* textmodes/sgml-mode.el (sgml-namespace-face):
|
||||
* textmodes/tex-mode.el (superscript, subscript, tex-math-face)
|
||||
(tex-verbatim-face, tex-use-reftex): Specify customization group.
|
||||
|
||||
* longlines.el: Don't require easy-mmode.
|
||||
(longlines-visible-face): Specify customization group.
|
||||
|
|
|
@ -643,19 +643,23 @@ An alternative value is \" . \", if you use a font with a narrow period."
|
|||
|
||||
(defface superscript
|
||||
'((t :height 0.8)) ;; :raise 0.3
|
||||
"Face used for superscripts.")
|
||||
"Face used for superscripts."
|
||||
:group 'tex)
|
||||
(defface subscript
|
||||
'((t :height 0.8)) ;; :raise -0.3
|
||||
"Face used for subscripts.")
|
||||
"Face used for subscripts."
|
||||
:group 'tex)
|
||||
|
||||
(defface tex-math-face
|
||||
'((t :inherit font-lock-string-face))
|
||||
"Face used to highlight TeX math expressions.")
|
||||
"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.")
|
||||
"Face used to highlight TeX verbatim environments."
|
||||
:group 'tex)
|
||||
(defvar tex-verbatim-face 'tex-verbatim-face)
|
||||
|
||||
;; Use string syntax but math face for $...$.
|
||||
|
@ -1623,7 +1627,8 @@ If NOT-ALL is non-nil, save the `.dvi' file."
|
|||
|
||||
(defcustom tex-use-reftex t
|
||||
"If non-nil, use RefTeX's list of files to determine what command to use."
|
||||
:type 'boolean)
|
||||
:type 'boolean
|
||||
:group 'tex)
|
||||
|
||||
(defvar tex-compile-commands
|
||||
'(((concat "pdf" tex-command
|
||||
|
|
Loading…
Add table
Reference in a new issue