ox-texinfo: fix bug in 3432681fbe

* lisp/ox-texinfo.el: Add missing argument to call of
  `org-element-property'.
This commit is contained in:
Achim Gratz 2014-09-19 10:39:02 +02:00
parent 1483df8c99
commit 1aa719cff2
1 changed files with 1 additions and 1 deletions

View File

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