# HG changeset patch # User jwe # Date 1110913241 0 # Node ID 61bf9cfc38dacb07c022706baa63a5c0c287910e # Parent 59592dcbb5d8f9d7265c3ba034b3c7206d91753d [project @ 2005-03-15 19:00:41 by jwe] diff -r 59592dcbb5d8 -r 61bf9cfc38da scripts/strings/strmatch.m --- a/scripts/strings/strmatch.m Tue Mar 15 16:04:57 2005 +0000 +++ b/scripts/strings/strmatch.m Tue Mar 15 19:00:41 2005 +0000 @@ -59,7 +59,7 @@ s(s == 0) = " "; A(A == 0) = " "; match = s(ones(size(A,1),1),:) == A(:,1:length(s)); - if (length(s) == 1) + if (length (s) == 1) idx = find (match); else idx = find (all (match')'); diff -r 59592dcbb5d8 -r 61bf9cfc38da src/ChangeLog --- a/src/ChangeLog Tue Mar 15 16:04:57 2005 +0000 +++ b/src/ChangeLog Tue Mar 15 19:00:41 2005 +0000 @@ -1,5 +1,8 @@ 2005-03-15 John W. Eaton + * version.h (OCTAVE_API_VERSION): Now 2.9.0. + (OCTAVE_API_VERSION): Now api-v14. + * cellfun.cc: New function from Octave-forge. Adapt to Octave coding standards. * Makefile.in (DLD_XSRC): Add it to the list. diff -r 59592dcbb5d8 -r 61bf9cfc38da src/version.h --- a/src/version.h Tue Mar 15 16:04:57 2005 +0000 +++ b/src/version.h Tue Mar 15 19:00:41 2005 +0000 @@ -1,6 +1,6 @@ /* -Copyright (C) 1996-2004 John W. Eaton +Copyright (C) 1996-2005 John W. Eaton This file is part of Octave. @@ -23,9 +23,9 @@ #if !defined (octave_version_h) #define octave_version_h 1 -#define OCTAVE_VERSION "2.1.cvs" +#define OCTAVE_VERSION "2.9.0" -#define OCTAVE_API_VERSION "api-cvs" +#define OCTAVE_API_VERSION "api-v14" #define OCTAVE_COPYRIGHT \ "Copyright (C) 2005 John W. Eaton."