1
0
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:
John Wiegley 2011-08-06 01:20:50 -05:00
parent 54c722a83a
commit bb08fab804

View File

@ -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.