summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-07-27 13:52:12 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-07-27 13:52:12 +0200
commit720b213a3556fa4c771bc32dd0852ddbd1adb6e0 (patch)
treef6c7b420dab84dfa37a4085d82a59181a22abc51
parentabc4bb26bad6a944e64b6fe1a54f1e4f222d930c (diff)
downloadorg-mode-720b213a3556fa4c771bc32dd0852ddbd1adb6e0.tar.gz
ox-texinfo: Default process includes "--no-split" option
* lisp/ox-texinfo.el (org-texinfo-info-process): Add "--no-split" option. Reported-by: Jonas Bernoulli <jonas@bernoul.li> <http://lists.gnu.org/archive/html/emacs-orgmode/2017-07/msg00458.html>
-rw-r--r--etc/ORG-NEWS1
-rw-r--r--lisp/ox-texinfo.el4
2 files changed, 4 insertions, 1 deletions
diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS
index 97dae4b..d7bd3e2 100644
--- a/etc/ORG-NEWS
+++ b/etc/ORG-NEWS
@@ -424,6 +424,7 @@ Now ~=...=~ markup uses ~@samp{}~ instead of ~@verb{}~. You can use
*** Texinfo default table markup is ~@asis~
It used to be ~@samp~ but ~@asis~ is neutral and, therefore, more
suitable as a default value.
+*** Texinfo default process includes ~--no-split~ option
*** New entities : ~\dollar~ and ~\USD~
*** ~org-parse-time-string~ accepts a new optional argument
=ZONE= specifies the current time zone.
diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el
index 7180622..ec9cd7f 100644
--- a/lisp/ox-texinfo.el
+++ b/lisp/ox-texinfo.el
@@ -351,7 +351,7 @@ The function should return the string to be exported."
;;;; Compilation
-(defcustom org-texinfo-info-process '("makeinfo %f")
+(defcustom org-texinfo-info-process '("makeinfo --no-split %f")
"Commands to process a Texinfo file to an INFO file.
This is a list of strings, each of them will be given to the
@@ -361,6 +361,8 @@ base name (i.e. without directory and extension parts), %o by the
base directory of the file and %O by the absolute file name of
the output file."
:group 'org-export-texinfo
+ :version "26.1"
+ :package-version '(Org . "9.1")
:type '(repeat :tag "Shell command sequence"
(string :tag "Shell command")))