# HG changeset patch # User jwe # Date 1073409655 0 # Node ID 14a1c9f42f67f836e1a0847d04cd2827c60a9c42 # Parent 5b8fcfaa81367c37b76eda7323b552d16c82a65d [project @ 2004-01-06 17:20:02 by jwe] diff -r 5b8fcfaa8136 -r 14a1c9f42f67 ChangeLog --- 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 + + * aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Recognize + *-*-darwin*, not *-*-darwin6*. + 2003-12-20 John W. Eaton * 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 +2002-11-10 Per Persson * configure.in: Detect dyld API for dynamic linking on OS X. -2002-11-09 Per Persson +2002-11-09 Per Persson * 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 +2002-10-25 Per Persson * aclocal.m4 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): Fix first test to properly fail on OS X. Fix typo in final test to diff -r 5b8fcfaa8136 -r 14a1c9f42f67 aclocal.m4 --- 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 diff -r 5b8fcfaa8136 -r 14a1c9f42f67 scripts/ChangeLog --- 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 + + * 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 * general/ind2sub.m: New file. diff -r 5b8fcfaa8136 -r 14a1c9f42f67 src/data.cc --- 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;