From 1aa719cff2d512733d1981e1b08afde12d99d5dd Mon Sep 17 00:00:00 2001 From: Achim Gratz Date: Fri, 19 Sep 2014 10:39:02 +0200 Subject: [PATCH] ox-texinfo: fix bug in 3432681fbe * lisp/ox-texinfo.el: Add missing argument to call of `org-element-property'. --- lisp/ox-texinfo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index 9e6dbd1ec..02ab1bd92 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -1235,7 +1235,7 @@ holding contextual information." "Transcode a SPECIAL-BLOCK element from Org to Texinfo. CONTENTS holds the contents of the block. INFO is a plist used as a communication channel." - (let ((type (org-element-property :type))) + (let ((type (org-element-property :type special-block))) (format "@%s\n%s@end %s" type contents type))) ;;;; Src Block -- 2.11.4.GIT