# HG changeset patch # User jwe # Date 985788197 0 # Node ID ec80db02d436c9dcb25ccca8b85cc4cf9c712bb2 # Parent 885b296ef83ac3127ea22e09be1f6f6ad5ac4a83 [project @ 2001-03-28 14:03:16 by jwe] diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,11 @@ +2001-03-27 John W. Eaton + + * liboctave/Makefile.in (liboctave_toc.html): Use -expand info and + -split chapter instead of -expandinfo and -split_chapter options + for texi2html. + * faq/Makefile.in (Octave-FAQ_toc.html): Likewise. + * interpreter/Makefile.in (octave_toc.html): Likewise. + 2000-10-10 John W. Eaton * liboctave/Makefile.in (liboctave_toc.html): Add space after -I diff --git a/doc/faq/Makefile.in b/doc/faq/Makefile.in --- a/doc/faq/Makefile.in +++ b/doc/faq/Makefile.in @@ -50,7 +50,7 @@ -dvips -o Octave-FAQ.ps Octave-FAQ.dvi Octave-FAQ_toc.html: - -texi2html -expandinfo -split_chapter $(srcdir)/Octave-FAQ.texi + -texi2html -expand info -split chapter $(srcdir)/Octave-FAQ.texi check install install-strip uninstall: .PHONY: check install install-strip uninstall diff --git a/doc/interpreter/Makefile.in b/doc/interpreter/Makefile.in --- a/doc/interpreter/Makefile.in +++ b/doc/interpreter/Makefile.in @@ -106,7 +106,7 @@ mv BUGS ../../BUGS octave_toc.html: $(MAIN_TEXINFO) $(SUB_TEXINFO) - -texi2html -expandinfo -split_chapter -I $(srcdir)/.. $< + -texi2html -expand info -split chapter -I $(srcdir)/.. $< check: all .PHONY: check diff --git a/doc/liboctave/Makefile.in b/doc/liboctave/Makefile.in --- a/doc/liboctave/Makefile.in +++ b/doc/liboctave/Makefile.in @@ -54,7 +54,7 @@ -dvips -o liboctave.ps liboctave.dvi liboctave_toc.html: - -texi2html -expandinfo -split_chapter -I $(srcdir)/.. \ + -texi2html -expand info -split chapter -I $(srcdir)/.. \ $(srcdir)/liboctave.texi check: diff --git a/libcruft/misc/f77-fcn.c b/libcruft/misc/f77-fcn.c --- a/libcruft/misc/f77-fcn.c +++ b/libcruft/misc/f77-fcn.c @@ -41,12 +41,13 @@ XSTOPX jumps back to the entry point for the Fortran function that called us. Then the calling function should do whatever cleanup - is necessary. */ + is necessary. */ volatile void F77_FCN (xstopx, XSTOPX) (const char *s, long int slen) { - if (s && slen > 0) + /* Skip printing message if it is just a single blank character. */ + if (s && slen > 0 && ! (slen == 1 && *s == ' ')) (*current_liboctave_error_handler) ("%.*s", s, slen); longjmp (f77_context, 1);