diff options
| author | Glenn Morris | 2009-02-12 03:26:13 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-02-12 03:26:13 +0000 |
| commit | 576e334d78cde7c6abea396082376805fc59ed9e (patch) | |
| tree | 2e9afbb030999b9ee604cc9a82a23915647adee6 | |
| parent | 9c55bbd2794b75619eb9ba016f7e0f1f4074bbc6 (diff) | |
| download | emacs-576e334d78cde7c6abea396082376805fc59ed9e.tar.gz emacs-576e334d78cde7c6abea396082376805fc59ed9e.zip | |
(org-footnote-at-definition-p): Fix doc typo.
| -rw-r--r-- | lisp/org/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/org/org-footnote.el | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index c0226589d45..ad6cb2f17e4 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2009-02-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * org-footnote.el (org-footnote-at-definition-p): Fix doc typo. | ||
| 4 | |||
| 5 | 2009-02-12 Joachim Reiter <Reiter.Joachim@web.de> (tiny change) | ||
| 6 | |||
| 7 | * org-footnote.el (org-footnote-action): Fix doc typo. | ||
| 8 | |||
| 1 | 2009-02-06 Carsten Dominik <dominik@science.uva.nl> | 9 | 2009-02-06 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 10 | ||
| 3 | * org-exp.el (org-export-preprocess-string): Fix bug with skipping | 11 | * org-exp.el (org-export-preprocess-string): Fix bug with skipping |
diff --git a/lisp/org/org-footnote.el b/lisp/org/org-footnote.el index 48ce05be3f7..3978d454d61 100644 --- a/lisp/org/org-footnote.el +++ b/lisp/org/org-footnote.el | |||
| @@ -124,7 +124,7 @@ extracted will be filled again." | |||
| 124 | If yes, return the beginning position, the label, and the definition, if local." | 124 | If yes, return the beginning position, the label, and the definition, if local." |
| 125 | (when (org-in-regexp org-footnote-re 15) | 125 | (when (org-in-regexp org-footnote-re 15) |
| 126 | (list (match-beginning 0) | 126 | (list (match-beginning 0) |
| 127 | (or (match-string 1) | 127 | (or (match-string 1) |
| 128 | (if (equal (match-string 2) "fn:") nil (match-string 2))) | 128 | (if (equal (match-string 2) "fn:") nil (match-string 2))) |
| 129 | (match-string 4)))) | 129 | (match-string 4)))) |
| 130 | 130 | ||
| @@ -133,7 +133,7 @@ If yes, return the beginning position, the label, and the definition, if local." | |||
| 133 | This matches only pure definitions like [1] or [fn:name] at the beginning | 133 | This matches only pure definitions like [1] or [fn:name] at the beginning |
| 134 | of a line. It does not a references like [fn:name:definition], where the | 134 | of a line. It does not a references like [fn:name:definition], where the |
| 135 | footnote text is included and defined locally. | 135 | footnote text is included and defined locally. |
| 136 | The return value will be nil if not at a foornote definition, and a list | 136 | The return value will be nil if not at a footnote definition, and a list |
| 137 | with start and label of the footnote if there is a definition at point." | 137 | with start and label of the footnote if there is a definition at point." |
| 138 | (save-excursion | 138 | (save-excursion |
| 139 | (end-of-line 1) | 139 | (end-of-line 1) |