Mercurial > emacs
changeset 82028:ff5079ea60b8
(tex-font-script-display): Change default to 0.2.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 22 Jul 2007 19:20:33 +0000 |
parents | 1350ba0c0448 |
children | 57917570b513 |
files | lisp/ChangeLog lisp/textmodes/tex-mode.el |
diffstat | 2 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Jul 22 19:04:11 2007 +0000 +++ b/lisp/ChangeLog Sun Jul 22 19:20:33 2007 +0000 @@ -1,3 +1,7 @@ +2007-07-22 Stefan Monnier <monnier@iro.umontreal.ca> + + * textmodes/tex-mode.el (tex-font-script-display): Change default to 0.2. + 2007-07-22 Dan Nicolaescu <dann@ics.uci.edu> * vc-cvs.el (vc-cvs-mode-line-string): Add support for tooltips @@ -15,7 +19,7 @@ * tramp.el (tramp-get-ls-command): Fyx typo. - * trampver.el: Update release number. + * trampver.el: Update release number. 2007-07-22 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
--- a/lisp/textmodes/tex-mode.el Sun Jul 22 19:04:11 2007 +0000 +++ b/lisp/textmodes/tex-mode.el Sun Jul 22 19:20:33 2007 +0000 @@ -249,7 +249,7 @@ :group 'tex) (put 'tex-fontify-script 'safe-local-variable 'booleanp) -(defcustom tex-font-script-display '(-0.3 . 0.3) +(defcustom tex-font-script-display '(-0.2 . 0.2) "Display specification for subscript and superscript content. The car is used for subscript, the cdr is used for superscripts." :group 'tex @@ -675,11 +675,11 @@ (setq beg next)))) (defface superscript - '((t :height 0.8)) ;; :raise 0.3 + '((t :height 0.8)) ;; :raise 0.2 "Face used for superscripts." :group 'tex) (defface subscript - '((t :height 0.8)) ;; :raise -0.3 + '((t :height 0.8)) ;; :raise -0.2 "Face used for subscripts." :group 'tex)