diff options
author | Lute Kamstra <lute@gnu.org> | 2005-05-27 13:00:57 +0000 |
---|---|---|
committer | Lute Kamstra <lute@gnu.org> | 2005-05-27 13:00:57 +0000 |
commit | 18a8c7738bc1d8b5cedcfa28dcf9abae6cc5e063 (patch) | |
tree | d35cc937d62821853172d631bc2abcb8ac8cc1de /lisp/textmodes | |
parent | dc11bf767ad8cf124b8954536b21199a313888c4 (diff) | |
download | emacs-18a8c7738bc1d8b5cedcfa28dcf9abae6cc5e063.tar.gz |
(superscript, subscript, tex-math-face)
(tex-verbatim-face, tex-use-reftex): Specify customization group.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/tex-mode.el | 15 |
1 files changed, 10 insertions, 5 deletions
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 |