]> git.eshelyaron.com Git - emacs.git/commitdiff
(tex-font-script-display): Change default to 0.2.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 22 Jul 2007 19:20:33 +0000 (19:20 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 22 Jul 2007 19:20:33 +0000 (19:20 +0000)
lisp/ChangeLog
lisp/textmodes/tex-mode.el

index 0ee2b68bf6df024fe1c9f4091a83c8c650f37b45..53e45caa62d9a65a31c0ad094624384fbcf015e1 100644 (file)
@@ -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\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
index eb1429b41e5a8ccf280a3b3103d3d2c25a255d7e..748680ab8f727055284fc77ae56bc4a13ffe38e7 100644 (file)
@@ -249,7 +249,7 @@ Normally set to either `plain-tex-mode' or `latex-mode'."
   :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 @@ An alternative value is \" . \", if you use a font with a narrow period."
       (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)