summaryrefslogtreecommitdiff
path: root/lisp/mail/footnote.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2011-11-20 20:35:27 +0100
committerJuanma Barranquero <lekktu@gmail.com>2011-11-20 20:35:27 +0100
commitfe7a3057a38e896a9c4ad12c831fb84a5d808691 (patch)
treebcb23e440925fde576409d960a71ee6df320331a /lisp/mail/footnote.el
parent09f5d05492b6c78421c71858d0d5c4434218b8fc (diff)
downloademacs-fe7a3057a38e896a9c4ad12c831fb84a5d808691.tar.gz
emacs-fe7a3057a38e896a9c4ad12c831fb84a5d808691.tar.bz2
emacs-fe7a3057a38e896a9c4ad12c831fb84a5d808691.zip
Fix typos.
Diffstat (limited to 'lisp/mail/footnote.el')
-rw-r--r--lisp/mail/footnote.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mail/footnote.el b/lisp/mail/footnote.el
index 0f1669562de..342d6c16b6e 100644
--- a/lisp/mail/footnote.el
+++ b/lisp/mail/footnote.el
@@ -294,14 +294,14 @@ Use a range of Latin-1 non-ASCII characters for footnoting."
;; Unicode
(defconst footnote-unicode-string "⁰¹²³⁴⁵⁶⁷⁸⁹"
- "String of unicode footnoting characters.")
+ "String of Unicode footnoting characters.")
(defconst footnote-unicode-regexp (concat "[" footnote-unicode-string "]+")
- "Regexp for unicode footnoting characters.")
+ "Regexp for Unicode footnoting characters.")
(defun Footnote-unicode (n)
"Unicode footnote style.
-Use unicode characters for footnoting."
+Use Unicode characters for footnoting."
(let (modulus result done)
(while (not done)
(setq modulus (mod n 10)
@@ -348,7 +348,7 @@ buffer use the command `Footnote-set-style'."
;;; Style utilities & functions
(defun Footnote-style-p (style)
- "Return non-nil if style is a valid style known to footnote-mode."
+ "Return non-nil if style is a valid style known to `footnote-mode'."
(assq style footnote-style-alist))
(defun Footnote-index-to-string (index)