summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-08-20 10:25:05 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2012-08-20 10:25:05 +0200
commitfc6b9f1d88a29e4f11e5343d8e2f10bf2637a5a6 (patch)
treea743a26e89e77015f0c82a4c0375186292da8fd8
parentec9e7ab9c15bea019e0dd4fac2fb2b6df1fa2087 (diff)
downloadorg-mode-fc6b9f1d88a29e4f11e5343d8e2f10bf2637a5a6.tar.gz
org-export: Fix code comments
-rw-r--r--contrib/lisp/org-export.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el
index 24dc35b..3ca7b5d 100644
--- a/contrib/lisp/org-export.el
+++ b/contrib/lisp/org-export.el
@@ -3012,7 +3012,7 @@ FOOTNOTE is either a footnote reference or a footnote definition.
INFO is the plist used as a communication channel."
(let* ((label (org-element-property :label footnote))
seen-refs
- search-ref ; for byte-compiler.
+ search-ref ; For byte-compiler.
(search-ref
(function
(lambda (data)
@@ -3035,11 +3035,11 @@ INFO is the plist used as a communication channel."
((not fn-lbl) (push 'inline seen-refs) nil)
;; Label not seen so far: add it so SEEN-REFS.
;;
- ;; Also search for subsequent references in footnote
- ;; definition so numbering following reading logic.
- ;; Note that we don't have to care about inline
- ;; definitions, since `org-element-map' already
- ;; traverse them at the right time.
+ ;; Also search for subsequent references in
+ ;; footnote definition so numbering follows reading
+ ;; logic. Note that we don't have to care about
+ ;; inline definitions, since `org-element-map'
+ ;; already traverses them at the right time.
;;
;; Once again, return nil to stay in the loop.
((not (member fn-lbl seen-refs))