From 720b213a3556fa4c771bc32dd0852ddbd1adb6e0 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 27 Jul 2017 13:52:12 +0200 Subject: [PATCH] ox-texinfo: Default process includes "--no-split" option * lisp/ox-texinfo.el (org-texinfo-info-process): Add "--no-split" option. Reported-by: Jonas Bernoulli --- etc/ORG-NEWS | 1 + lisp/ox-texinfo.el | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS index 97dae4bcc..d7bd3e2ce 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 71806228c..ec9cd7fd4 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")))