]> git.eshelyaron.com Git - emacs.git/commitdiff
(footnote-style): Clarify docstring to state that customizing this
authorChong Yidong <cyd@stupidchicken.com>
Sun, 15 Apr 2007 17:28:00 +0000 (17:28 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 15 Apr 2007 17:28:00 +0000 (17:28 +0000)
only applies to future footnotes.

lisp/mail/footnote.el

index 9e3a375c50d209eb62c3b630b71df3c7e1010849..7992438df251450c909575adad490e2980254736 100644 (file)
@@ -294,14 +294,18 @@ See footnote-han.el, footnote-greek.el and footnote-hebrew.el for more
 exciting styles.")
 
 (defcustom footnote-style 'numeric
-  "*Style used for footnoting.
+  "*Default style used for footnoting.
 numeric == 1, 2, 3, ...
 english-lower == a, b, c, ...
 english-upper == A, B, C, ...
 roman-lower == i, ii, iii, iv, v, ...
 roman-upper == I, II, III, IV, V, ...
 latin == ¹ ² ³ º ª § ¶
-See also variables `footnote-start-tag' and `footnote-end-tag'."
+See also variables `footnote-start-tag' and `footnote-end-tag'.
+
+Customizing this variable has no effect on buffers already
+displaying footnotes.  You can change the style of existing
+buffers using the command `Footnote-set-style'."
   :type (cons 'choice (mapcar (lambda (x) (list 'const (car x)))
                              footnote-style-alist))
   :group 'footnote)