changeset 3809:ec80db02d436

[project @ 2001-03-28 14:03:16 by jwe]
author jwe
date Wed, 28 Mar 2001 14:03:17 +0000
parents 885b296ef83a
children f19f00339363
files doc/ChangeLog doc/faq/Makefile.in doc/interpreter/Makefile.in doc/liboctave/Makefile.in libcruft/misc/f77-fcn.c
diffstat 5 files changed, 14 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Tue Mar 27 19:12:59 2001 +0000
+++ b/doc/ChangeLog	Wed Mar 28 14:03:17 2001 +0000
@@ -1,3 +1,11 @@
+2001-03-27  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* 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  <jwe@bevo.che.wisc.edu>
 
 	* liboctave/Makefile.in (liboctave_toc.html): Add space after -I
--- a/doc/faq/Makefile.in	Tue Mar 27 19:12:59 2001 +0000
+++ b/doc/faq/Makefile.in	Wed Mar 28 14:03:17 2001 +0000
@@ -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
--- a/doc/interpreter/Makefile.in	Tue Mar 27 19:12:59 2001 +0000
+++ b/doc/interpreter/Makefile.in	Wed Mar 28 14:03:17 2001 +0000
@@ -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
--- a/doc/liboctave/Makefile.in	Tue Mar 27 19:12:59 2001 +0000
+++ b/doc/liboctave/Makefile.in	Wed Mar 28 14:03:17 2001 +0000
@@ -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:
--- a/libcruft/misc/f77-fcn.c	Tue Mar 27 19:12:59 2001 +0000
+++ b/libcruft/misc/f77-fcn.c	Wed Mar 28 14:03:17 2001 +0000
@@ -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);