From 18a8c7738bc1d8b5cedcfa28dcf9abae6cc5e063 Mon Sep 17 00:00:00 2001 From: Lute Kamstra Date: Fri, 27 May 2005 13:00:57 +0000 Subject: [PATCH] (superscript, subscript, tex-math-face) (tex-verbatim-face, tex-use-reftex): Specify customization group. --- lisp/ChangeLog | 15 ++++++--------- lisp/textmodes/tex-mode.el | 15 ++++++++++----- 2 files changed, 16 insertions(+), 14 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6eb1b614310..c1e3a52fbe8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,15 +1,12 @@ 2005-05-27 Lute Kamstra - * 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. diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 3f4a30dc792..e3efa32d551 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -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 -- 2.39.2