Browse Source

ox-texinfo: Check options before inserting TOC

* lisp/ox-texinfo.el (org-texinfo-template): Make sure table of
  contents are allowed before inserting them.
Nicolas Goaziou 10 years ago
parent
commit
6f73155454
1 changed files with 2 additions and 3 deletions
  1. 2 3
      lisp/ox-texinfo.el

+ 2 - 3
lisp/ox-texinfo.el

@@ -783,9 +783,8 @@ holding export options."
 		(replace-regexp-in-string "^" "@author " subauthor))))))
      (and copying "@page\n@vskip 0pt plus 1filll\n@insertcopying\n")
      "@end titlepage\n\n"
-     "@c Output the table of contents at the beginning.\n"
-     "@contents\n\n"
-
+     ;; Table of contents.
+     (and (plist-get info :with-toc) "@contents\n\n")
      ;; Configure Top Node when not for Tex
      "@ifnottex\n"
      "@node Top\n"