mirror of
https://github.com/larstvei/ox-gfm.git
synced 2024-11-26 01:28:30 +00:00
Use prefixed version of cl-loop
I ran into some issues with the un-prefixed `loop` combined with the `for` keyword. I think the issue is that newer versions of Emacs don't alias `loop` to `cl-loop` by default? I had to explicitly require `cl` to make it work.
This commit is contained in:
parent
cc4f3cdb00
commit
0e758d06f9
@ -248,7 +248,7 @@ plist used as a communication channel."
|
||||
INFO is a plist used as a communication channel."
|
||||
(let* ((fn-alist (org-export-collect-footnote-definitions info))
|
||||
(fn-alist
|
||||
(loop for (n type raw) in fn-alist collect
|
||||
(cl-loop for (n type raw) in fn-alist collect
|
||||
(cons n (org-trim (org-export-data raw info))))))
|
||||
(when fn-alist
|
||||
(format
|
||||
|
Loading…
Reference in New Issue
Block a user