summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2011-07-16 10:45:40 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2011-07-16 10:45:40 +0200
commit4ae030e027a4d09547a68de9a2dfebd4df50a7f8 (patch)
tree43a2f290880713909a6840d3e4ede36e58541c43
parent6d9e90454fd674d30eb7da0374bfc6832a17909c (diff)
downloadorg-mode-4ae030e027a4d09547a68de9a2dfebd4df50a7f8.tar.gz
org-footnote: fix some comment strings
-rw-r--r--lisp/org-footnote.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/org-footnote.el b/lisp/org-footnote.el
index f5a6703..e80a90a 100644
--- a/lisp/org-footnote.el
+++ b/lisp/org-footnote.el
@@ -579,14 +579,14 @@ Additional note on `org-footnote-insert-pos-for-preprocessor':
ins-point ref)
(save-excursion
;; 1. Find every footnote reference, extract the definition, and
- ;; collect that data in REF-TABLE. If SORT-ONLY is nil, also
+ ;; collect that data in REF-TABLE. If SORT-ONLY is nil, also
;; normalize references.
(goto-char (point-min))
(while (setq ref (org-footnote-get-next-reference))
(let* ((lbl (car ref))
;; When footnote isn't anonymous, check if it's label
- ;; (REF) is already stored in REF-TABLE. In that case,
- ;; extract number used to identify it (MARKER). If
+ ;; (REF) is already stored in REF-TABLE. In that case,
+ ;; extract number used to identify it (MARKER). If
;; footnote is unknown, increment the global counter
;; (COUNT) to create an unused identifier.
(a (and lbl (assoc lbl ref-table)))
@@ -594,8 +594,8 @@ Additional note on `org-footnote-insert-pos-for-preprocessor':
;; Is the reference inline or pointing to an inline
;; footnote?
(inlinep (or (stringp (nth 3 ref)) (nth 3 a))))
- ;; Replace footnote reference with [MARKER]. Maybe fill
- ;; paragraph once done. If SORT-ONLY is non-nil, only move
+ ;; Replace footnote reference with [MARKER]. Maybe fill
+ ;; paragraph once done. If SORT-ONLY is non-nil, only move
;; to the end of reference found to avoid matching it twice.
;; If EXPORT-PROPS isn't nil, also add `org-footnote'
;; property to it, so it can be easily recognized by
@@ -717,9 +717,9 @@ Additional note on `org-footnote-insert-pos-for-preprocessor':
(when export-props
(setq org-export-footnotes-seen ref-table)))
;; Else, insert each definition at the end of the section
- ;; containing their first reference. Happens only in Org
- ;; files with no special footnote section, and only when
- ;; doing sorting.
+ ;; containing their first reference. Happens only in Org files
+ ;; with no special footnote section, and only when doing
+ ;; sorting.
(t (mapc 'org-insert-footnote-reference-near-definition
ref-table))))))