unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4.
       [not found] ` <20160815164806.47CF6220155@vcs.savannah.gnu.org>
@ 2016-08-15 17:42   ` Michael Albinus
  2016-08-15 19:35     ` Glenn Morris
  2016-08-15 21:44     ` Paul Eggert
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Albinus @ 2016-08-15 17:42 UTC (permalink / raw)
  To: emacs-devel; +Cc: Glenn Morris

rgm@gnu.org (Glenn Morris) writes:

Hi Glenn,

> branch: master
> commit 126f95a708d637941e9eae1b023a87733bb5fd38
> Author: Glenn Morris <rgm@gnu.org>
> Commit: Glenn Morris <rgm@gnu.org>
>
>     * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4.
> ---
>  doc/misc/tramp.texi |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
> index d64d5e5..5e04a2d 100644
> --- a/doc/misc/tramp.texi
> +++ b/doc/misc/tramp.texi
> @@ -65,8 +65,8 @@ copy and modify this GNU manual.''
>  @contents
>  
>  
> -@node Top, Overview, (dir), (dir)
>  @ifnottex
> +@node Top, Overview, (dir), (dir)
>  @top @value{tramp} version @value{trampver} User Manual
>  
>  This file documents @value{tramp} version @value{trampver}, a remote file

I've applied your change to the Tramp repository. This results in errors:

detlef:~/src/tramp/texi> make
install-info --quiet --info-dir=../info/   ../info/tramp
makeinfo --no-warn --no-split -D  installchapter --dvi -o tramp.dvi tramp.texi
tramp.texi:105: @menu seen before first @node
tramp.texi:132: @detailmenu seen before first @node
Makefile:89: recipe for target 'dvi' failed
make: [dvi] Error 1 (ignored)
makeinfo --no-warn --no-split -D  installchapter --html -o tramp.html tramp.texi
makeinfo --no-warn --no-split -D  installchapter --pdf -o tramp.pdf tramp.texi
tramp.texi:105: @menu seen before first @node
tramp.texi:132: @detailmenu seen before first @node
Makefile:89: recipe for target 'pdf' failed
make: [pdf] Error 1 (ignored)

Could you please tell, why this change is necessary? I run

detlef:~/src/emacs> makeinfo --version
texi2any (GNU texinfo) 6.1

Thanks, and best regards, Michael.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4.
  2016-08-15 17:42   ` master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4 Michael Albinus
@ 2016-08-15 19:35     ` Glenn Morris
  2016-08-15 21:44     ` Paul Eggert
  1 sibling, 0 replies; 4+ messages in thread
From: Glenn Morris @ 2016-08-15 19:35 UTC (permalink / raw)
  To: Michael Albinus; +Cc: emacs-devel


With my change:
makeinfo 4.13 and 5.1 both work fine for me for tramp info and pdf.
The info pages also build fine on Hydra with texinfo 5.2.
I do not have makeinfo 6.

Without my change:
makeinfo (GNU texinfo) 4.13 fails to build tramp.info since
59720dc1379bb0e0c4a78930fac7f48740780c80:

  GEN      ../../info/tramp.info
tramp.texi:3622: `Concept Index' has no Up field (perhaps incorrect sectioning?).
tramp.texi:3617: `Variable Index' has no Up field (perhaps incorrect sectioning?).
tramp.texi:3612: `Function Index' has no Up field (perhaps incorrect sectioning?).
tramp.texi:3607: `GNU Free Documentation License' has no Up field (perhaps incorrect sectioning?).
tramp.texi:3538: `Traces and Profiles' has no Up field (perhaps incorrect sectioning?).
tramp.texi:3450: `Files directories and localnames' has no Up field (perhaps incorrect sectioning?).
tramp.texi:2759: `Frequently Asked Questions' has no Up field (perhaps incorrect sectioning?).
tramp.texi:2699: `Bug Reports' has no Up field (perhaps incorrect sectioning?).
tramp.texi:2142: `Usage' has no Up field (perhaps incorrect sectioning?).
tramp.texi:426: `Configuration' has no Up field (perhaps incorrect sectioning?).
tramp.texi:396: `History' has no Up field (perhaps incorrect sectioning?).
tramp.texi:324: `Obtaining Tramp' has no Up field (perhaps incorrect sectioning?).
tramp.texi:183: `Overview' has no Up field (perhaps incorrect sectioning?).
tramp.texi:67: Next field of node `Top' not pointed to (perhaps incorrect sectioning?).
tramp.texi:183: This node (Overview) has the bad Prev.
make: *** [../../info/tramp.info] Error 1





^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4.
  2016-08-15 17:42   ` master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4 Michael Albinus
  2016-08-15 19:35     ` Glenn Morris
@ 2016-08-15 21:44     ` Paul Eggert
  2016-08-16  7:50       ` Michael Albinus
  1 sibling, 1 reply; 4+ messages in thread
From: Paul Eggert @ 2016-08-15 21:44 UTC (permalink / raw)
  To: Michael Albinus, emacs-devel; +Cc: Glenn Morris

Can you run 'MAKEINFO="makeinfo ..." texi2dvi tramp.texi' instead of 'makeinfo 
... --dvi -o tramp.dvi tramp.texi'? That's what the Emacs build procedure does.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4.
  2016-08-15 21:44     ` Paul Eggert
@ 2016-08-16  7:50       ` Michael Albinus
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Albinus @ 2016-08-16  7:50 UTC (permalink / raw)
  To: Paul Eggert; +Cc: Glenn Morris, emacs-devel

Paul Eggert <eggert@cs.ucla.edu> writes:

> Can you run 'MAKEINFO="makeinfo ..." texi2dvi tramp.texi' instead of
> 'makeinfo ... --dvi -o tramp.dvi tramp.texi'? That's what the Emacs
> build procedure does.

I've rearranged the text in tramp.texi. Shall work now everywhere.

Best regards, Michael.



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-16  7:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20160815164806.23036.35690@vcs.savannah.gnu.org>
     [not found] ` <20160815164806.47CF6220155@vcs.savannah.gnu.org>
2016-08-15 17:42   ` master 126f95a: * doc/misc/tramp.texi: Adapt 2016-08-14 change for makeinfo 4 Michael Albinus
2016-08-15 19:35     ` Glenn Morris
2016-08-15 21:44     ` Paul Eggert
2016-08-16  7:50       ` Michael Albinus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).