aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2007-09-25 07:29:43 +0000
committerGlenn Morris2007-09-25 07:29:43 +0000
commitacdc4e5902f6571af92c546627a98347624393e6 (patch)
treed3e3c09d5c00e70b8a9941ac7fdca922b3ea8bd1
parent13b1f3409fcee2e98c151ed39e016a1d4e22af0e (diff)
downloademacs-acdc4e5902f6571af92c546627a98347624393e6.tar.gz
emacs-acdc4e5902f6571af92c546627a98347624393e6.zip
(tex-font-script-display): Doc fix.
-rw-r--r--lisp/textmodes/tex-mode.el7
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el
index 7be4d1e0bd1..110351a6a60 100644
--- a/lisp/textmodes/tex-mode.el
+++ b/lisp/textmodes/tex-mode.el
@@ -251,8 +251,11 @@ Normally set to either `plain-tex-mode' or `latex-mode'."
251(put 'tex-fontify-script 'safe-local-variable 'booleanp) 251(put 'tex-fontify-script 'safe-local-variable 'booleanp)
252 252
253(defcustom tex-font-script-display '(-0.2 0.2) 253(defcustom tex-font-script-display '(-0.2 0.2)
254 "Display specification for subscript and superscript content. 254 "How much to lower and raise subscript and superscript content.
255The first is used for subscript, the second is used for superscripts." 255This is a list of two floats. The first is negative and
256specifies how much subscript is lowered, the second is positive
257and specifies how much superscript is raised. Heights are
258measured relative to that of the normal text."
256 :group 'tex 259 :group 'tex
257 :type '(list (float :tag "Subscript") 260 :type '(list (float :tag "Subscript")
258 (float :tag "Superscript"))) 261 (float :tag "Superscript")))