소스 검색

Merge branch 'maint'

Nicolas Goaziou 8 년 전
부모
커밋
feb34a1fbf
1개의 변경된 파일2개의 추가작업 그리고 5개의 파일을 삭제
  1. 2 5
      lisp/ox-texinfo.el

+ 2 - 5
lisp/ox-texinfo.el

@@ -733,11 +733,8 @@ holding contextual information."
 ;;;; Entity
 
 (defun org-texinfo-entity (entity _contents _info)
-  "Transcode an ENTITY object from Org to Texinfo.
-CONTENTS are the definition itself.  INFO is a plist holding
-contextual information."
-  (let ((ent (org-element-property :latex entity)))
-    (if (org-element-property :latex-math-p entity) (format "@math{%s}" ent) ent)))
+  "Transcode an ENTITY object from Org to Texinfo."
+  (org-element-property :utf-8 entity))
 
 ;;;; Example Block