changeset 6669:39d76485706a

[project @ 2007-05-29 17:44:30 by jwe]
author jwe
date Tue, 29 May 2007 17:44:30 +0000
parents 69197bd681f6
children 14992092ab06
files doc/ChangeLog doc/interpreter/Makefile.in scripts/ChangeLog scripts/sparse/spy.m
diffstat 4 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/ChangeLog	Tue May 29 07:57:19 2007 +0000
+++ b/doc/ChangeLog	Tue May 29 17:44:30 2007 +0000
@@ -1,3 +1,8 @@
+2007-05-29  Steven Mestdagh  <steven.mestdagh@esat.kuleuven.be>
+
+	* 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  <hauberg@gmail.com>
 
         * interpreter/errors.txi: Add new sections and some more detailed
--- a/doc/interpreter/Makefile.in	Tue May 29 07:57:19 2007 +0000
+++ b/doc/interpreter/Makefile.in	Tue May 29 17:44:30 2007 +0000
@@ -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
--- a/scripts/ChangeLog	Tue May 29 07:57:19 2007 +0000
+++ b/scripts/ChangeLog	Tue May 29 17:44:30 2007 +0000
@@ -1,3 +1,7 @@
+2007-05-29  John W. Eaton  <jwe@octave.org>
+
+	* sparse/spy.m: Set axis to "ij" mode.
+
 2007-05-24  John W. Eaton  <jwe@octave.org>
 
 	* set/ismember.m: Quote first arg of "fail" tests.
--- a/scripts/sparse/spy.m	Tue May 29 07:57:19 2007 +0000
+++ b/scripts/sparse/spy.m	Tue May 29 17:44:30 2007 +0000
@@ -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