소스 검색

ox-texinfo: fix bug in 3432681fbe

* lisp/ox-texinfo.el: Add missing argument to call of
  `org-element-property'.
Achim Gratz 10 년 전
부모
커밋
1aa719cff2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lisp/ox-texinfo.el

+ 1 - 1
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