diff options
| author | Lute Kamstra | 2005-05-27 13:00:57 +0000 |
|---|---|---|
| committer | Lute Kamstra | 2005-05-27 13:00:57 +0000 |
| commit | 18a8c7738bc1d8b5cedcfa28dcf9abae6cc5e063 (patch) | |
| tree | d35cc937d62821853172d631bc2abcb8ac8cc1de | |
| parent | dc11bf767ad8cf124b8954536b21199a313888c4 (diff) | |
| download | emacs-18a8c7738bc1d8b5cedcfa28dcf9abae6cc5e063.tar.gz emacs-18a8c7738bc1d8b5cedcfa28dcf9abae6cc5e063.zip | |
(superscript, subscript, tex-math-face)
(tex-verbatim-face, tex-use-reftex): Specify customization group.
| -rw-r--r-- | lisp/ChangeLog | 15 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2005-05-27 Lute Kamstra <lute@gnu.org> | 1 | 2005-05-27 Lute Kamstra <lute@gnu.org> |
| 2 | 2 | ||
| 3 | * textmodes/sgml-mode.el (sgml-namespace-face): Specify | 3 | * calc/calc.el (calc): |
| 4 | customization group. | ||
| 5 | |||
| 6 | * textmodes/dns-mode.el (dns-mode): Specify customization group. | ||
| 7 | |||
| 8 | * calc/calc.el (calc): Specify customization group. | ||
| 9 | |||
| 10 | * outline.el (outline-1, outline-2, outline-3, outline-4) | 4 | * outline.el (outline-1, outline-2, outline-3, outline-4) |
| 11 | (outline-5, outline-6, outline-7, outline-8): Specify | 5 | (outline-5, outline-6, outline-7, outline-8): |
| 12 | customization group. | 6 | * textmodes/dns-mode.el (dns-mode): |
| 7 | * textmodes/sgml-mode.el (sgml-namespace-face): | ||
| 8 | * textmodes/tex-mode.el (superscript, subscript, tex-math-face) | ||
| 9 | (tex-verbatim-face, tex-use-reftex): Specify customization group. | ||
| 13 | 10 | ||
| 14 | * longlines.el: Don't require easy-mmode. | 11 | * longlines.el: Don't require easy-mmode. |
| 15 | (longlines-visible-face): Specify customization group. | 12 | (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." | |||
| 643 | 643 | ||
| 644 | (defface superscript | 644 | (defface superscript |
| 645 | '((t :height 0.8)) ;; :raise 0.3 | 645 | '((t :height 0.8)) ;; :raise 0.3 |
| 646 | "Face used for superscripts.") | 646 | "Face used for superscripts." |
| 647 | :group 'tex) | ||
| 647 | (defface subscript | 648 | (defface subscript |
| 648 | '((t :height 0.8)) ;; :raise -0.3 | 649 | '((t :height 0.8)) ;; :raise -0.3 |
| 649 | "Face used for subscripts.") | 650 | "Face used for subscripts." |
| 651 | :group 'tex) | ||
| 650 | 652 | ||
| 651 | (defface tex-math-face | 653 | (defface tex-math-face |
| 652 | '((t :inherit font-lock-string-face)) | 654 | '((t :inherit font-lock-string-face)) |
| 653 | "Face used to highlight TeX math expressions.") | 655 | "Face used to highlight TeX math expressions." |
| 656 | :group 'tex) | ||
| 654 | (defvar tex-math-face 'tex-math-face) | 657 | (defvar tex-math-face 'tex-math-face) |
| 655 | (defface tex-verbatim-face | 658 | (defface tex-verbatim-face |
| 656 | ;; '((t :inherit font-lock-string-face)) | 659 | ;; '((t :inherit font-lock-string-face)) |
| 657 | '((t :family "courier")) | 660 | '((t :family "courier")) |
| 658 | "Face used to highlight TeX verbatim environments.") | 661 | "Face used to highlight TeX verbatim environments." |
| 662 | :group 'tex) | ||
| 659 | (defvar tex-verbatim-face 'tex-verbatim-face) | 663 | (defvar tex-verbatim-face 'tex-verbatim-face) |
| 660 | 664 | ||
| 661 | ;; Use string syntax but math face for $...$. | 665 | ;; Use string syntax but math face for $...$. |
| @@ -1623,7 +1627,8 @@ If NOT-ALL is non-nil, save the `.dvi' file." | |||
| 1623 | 1627 | ||
| 1624 | (defcustom tex-use-reftex t | 1628 | (defcustom tex-use-reftex t |
| 1625 | "If non-nil, use RefTeX's list of files to determine what command to use." | 1629 | "If non-nil, use RefTeX's list of files to determine what command to use." |
| 1626 | :type 'boolean) | 1630 | :type 'boolean |
| 1631 | :group 'tex) | ||
| 1627 | 1632 | ||
| 1628 | (defvar tex-compile-commands | 1633 | (defvar tex-compile-commands |
| 1629 | '(((concat "pdf" tex-command | 1634 | '(((concat "pdf" tex-command |