]> git.eshelyaron.com Git - emacs.git/commitdiff
(org-footnote-at-definition-p): Fix doc typo.
authorGlenn Morris <rgm@gnu.org>
Thu, 12 Feb 2009 03:26:13 +0000 (03:26 +0000)
committerGlenn Morris <rgm@gnu.org>
Thu, 12 Feb 2009 03:26:13 +0000 (03:26 +0000)
lisp/org/ChangeLog
lisp/org/org-footnote.el

index c0226589d45eb7b0865878db6ead4852a2938daf..ad6cb2f17e42484ba83312797010b4326ce4c42a 100644 (file)
@@ -1,3 +1,11 @@
+2009-02-12  Glenn Morris  <rgm@gnu.org>
+
+       * org-footnote.el (org-footnote-at-definition-p): Fix doc typo.
+
+2009-02-12  Joachim Reiter  <Reiter.Joachim@web.de>  (tiny change)
+
+       * org-footnote.el (org-footnote-action): Fix doc typo.
+
 2009-02-06  Carsten Dominik  <dominik@science.uva.nl>
 
        * org-exp.el (org-export-preprocess-string): Fix bug with skipping
index 48ce05be3f71ae5c3a5f6c62a0604756b6fc24bf..3978d454d611938bd4f6ac3eee07185273ef37ff 100644 (file)
@@ -124,7 +124,7 @@ extracted will be filled again."
 If yes, return the beginning position, the label, and the definition, if local."
   (when (org-in-regexp org-footnote-re 15)
     (list (match-beginning 0)
-         (or (match-string 1) 
+         (or (match-string 1)
              (if (equal (match-string 2) "fn:") nil (match-string 2)))
          (match-string 4))))
 
@@ -133,7 +133,7 @@ If yes, return the beginning position, the label, and the definition, if local."
 This matches only pure definitions like [1] or [fn:name] at the beginning
 of a line.  It does not a references like [fn:name:definition], where the
 footnote text is included and defined locally.
-The return value will be nil if not at a foornote definition, and a list
+The return value will be nil if not at a footnote definition, and a list
 with start and label of the footnote if there is a definition at point."
   (save-excursion
     (end-of-line 1)