changeset 4685:14a1c9f42f67

[project @ 2004-01-06 17:20:02 by jwe]
author jwe
date Tue, 06 Jan 2004 17:20:55 +0000
parents 5b8fcfaa8136
children c7ae43dfdea4
files ChangeLog aclocal.m4 scripts/ChangeLog src/data.cc
diffstat 4 files changed, 19 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jan 05 21:02:29 2004 +0000
+++ b/ChangeLog	Tue Jan 06 17:20:55 2004 +0000
@@ -1,3 +1,8 @@
+2004-01-06  Per Persson  <persquare@mac.com>
+
+	* aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Recognize
+	*-*-darwin*, not *-*-darwin6*.
+
 2003-12-20  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* INSTALL: Update to newer version from autoconf.
@@ -409,11 +414,11 @@
 	(AH_BOTTOM): If both are found, define OCTAVE_HAVE_SIG_JUMP.
 	Also check for sig_atomic_t, typedef it if not available.
 
-2002-11-10  Per Persson <persquare@mac.com>
+2002-11-10  Per Persson  <persquare@mac.com>
 
 	* configure.in: Detect dyld API for dynamic linking on OS X.
 
-2002-11-09  Per Persson <persquare@mac.com>
+2002-11-09  Per Persson  <persquare@mac.com>
 
 	* configure.in: Use $(TOPDIR)/src/octave, not $(bindir)/octave for
 	-bundle-loader argument.	
@@ -462,7 +467,7 @@
 	* Makeconf.in: Substitute them here.
 	Also substitute SHLLINKEXT.
 
-2002-10-25  Per Persson <persquare@mac.com>
+2002-10-25  Per Persson  <persquare@mac.com>
 
 	* aclocal.m4 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): Fix
 	first test to properly fail on OS X.  Fix typo in final test to
--- a/aclocal.m4	Mon Jan 05 21:02:29 2004 +0000
+++ b/aclocal.m4	Tue Jan 06 17:20:55 2004 +0000
@@ -585,7 +585,7 @@
       ;;
 ### XXX FIXME XXX -- Ignore test result on OS X.  Yes it prepends
 ### underscore, but also messes with the name so test fails (incorrectly).
-      *-*-darwin6*)
+      *-*-darwin*)
         octave_cv_cxx_prepends_underscore=yes
       ;;
     esac
--- a/scripts/ChangeLog	Mon Jan 05 21:02:29 2004 +0000
+++ b/scripts/ChangeLog	Tue Jan 06 17:20:55 2004 +0000
@@ -1,3 +1,10 @@
+2003-12-21  Schloegl Alois  <alois.schloegl@tugraz.at>
+
+	* miscellaneous/fullfile.m: If filename is empty, set it to "."
+	before continuing.
+
+	* miscellaneous/fileparts.m: Allow name to start with ".".
+
 2003-12-16  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* general/ind2sub.m: New file.
--- a/src/data.cc	Mon Jan 05 21:02:29 2004 +0000
+++ b/src/data.cc	Tue Jan 06 17:20:55 2004 +0000
@@ -264,9 +264,9 @@
 DEFUN (fmod, args, ,
   "-*- texinfo -*-\n\
 @deftypefn {Mapping Function} {} fmod (@var{x}, @var{y})\n\
-Compute the floating point remainder of @var{y} / @var{x} using the C\n\
-library function @code{fmod}.  The result has the same sign as @var{x}.\n\
-If @var{y} is zero, the result implementation-defined.\n\
+Compute the floating point remainder of dividing @var{x} by @var{y}\n\
+using the C library function @code{fmod}.  The result has the same\n\
+sign as @var{x}.  If @var{y} is zero, the result implementation-defined.\n\
 @end deftypefn")
 {
   octave_value retval;