summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ecay <aaronecay@gmail.com>2016-09-03 01:26:45 +0100
committerAaron Ecay <aaronecay@gmail.com>2016-09-03 01:26:45 +0100
commit17efe53170a22fbdee269b672bfe2638adf12886 (patch)
treefbb7c0b265b79e41e3a1e37ef0ffcf3e184998dc
parentab21e2b72d504c13e035757a4765d02f8e938968 (diff)
downloadorg-mode-17efe53170a22fbdee269b672bfe2638adf12886.tar.gz
ox-md: pacify byte compiler
* lisp/ox-md.el (org-md--footnote-section): (org-md-inner-template): Fix byte compiler warnings.
-rw-r--r--lisp/ox-md.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ox-md.el b/lisp/ox-md.el
index 034145a..4e33bab 100644
--- a/lisp/ox-md.el
+++ b/lisp/ox-md.el
@@ -514,7 +514,7 @@ INFO is a plist with contextual information."
"Format the footnote section.
INFO is a plist used as a communication channel."
(let* ((fn-alist (org-export-collect-footnote-definitions info))
- (fn-alist (cl-loop for (n type raw) in fn-alist collect
+ (fn-alist (cl-loop for (n _type raw) in fn-alist collect
(cons n (org-trim (org-export-data raw info)))))
(headline-style (plist-get info :md-headline-style))
(section-title (org-html--translate "Footnotes" info)))
@@ -539,7 +539,7 @@ holding export options."
contents
"\n"
;; Footnotes section.
- (org-md-footnote--section info)))
+ (org-md--footnote-section info)))
(defun org-md-template (contents _info)
"Return complete document string after Markdown conversion.