mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-26 07:33:39 +00:00
org-footnote: Guard against `def' being nil, if footnote undefined
This commit is contained in:
parent
54c722a83a
commit
bb08fab804
@ -651,7 +651,8 @@ Additional note on `org-footnote-insert-pos-for-preprocessor':
|
||||
(org-combine-plists
|
||||
export-props
|
||||
'(:todo-keywords t :tags t :priority t))))
|
||||
(org-export-preprocess-string def parameters))
|
||||
(if def
|
||||
(org-export-preprocess-string def parameters)))
|
||||
def)
|
||||
inlinep) ref-table)))
|
||||
;; Remove definition of non-inlined footnotes.
|
||||
|
Loading…
Reference in New Issue
Block a user