# HG changeset patch # User jwe # Date 1180460670 0 # Node ID 39d76485706abb612b6fdf28b7a068f719832f79 # Parent 69197bd681f68fbb5499d6446190fd27b637dc27 [project @ 2007-05-29 17:44:30 by jwe] diff --git a/doc/ChangeLog b/doc/ChangeLog --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2007-05-29 Steven Mestdagh + + * interpreter/Makefile.in ($(HTML_IMAGES_PNG)): Use cp instead of + INSTALL_DATA to copy files to the HTML directory. + 2007-05-28 Søren Hauberg * interpreter/errors.txi: Add new sections and some more detailed diff --git a/doc/interpreter/Makefile.in b/doc/interpreter/Makefile.in --- a/doc/interpreter/Makefile.in +++ b/doc/interpreter/Makefile.in @@ -174,7 +174,7 @@ echo "creating HTML directory"; \ mkdir HTML; \ fi - $(INSTALL_DATA) $(filter-out html-dir, $<) HTML + cp $(filter-out html-dir, $<) HTML ## Unset DISPLAY here to avoid problems with the -title option for ## gnuplot (it doesn't work if we are calling pgnuplot). Sleep for diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,7 @@ +2007-05-29 John W. Eaton + + * sparse/spy.m: Set axis to "ij" mode. + 2007-05-24 John W. Eaton * set/ismember.m: Quote first arg of "fail" tests. diff --git a/scripts/sparse/spy.m b/scripts/sparse/spy.m --- a/scripts/sparse/spy.m +++ b/scripts/sparse/spy.m @@ -57,6 +57,6 @@ plot (j, i, LineSpec, "MarkerSize", markersize); endif - axis ([0, n+1, m+1, 0]); + axis ([0, n+1, m+1, 0], "ij"); endfunction