changeset 5206:61bf9cfc38da

[project @ 2005-03-15 19:00:41 by jwe]
author jwe
date Tue, 15 Mar 2005 19:00:41 +0000
parents 59592dcbb5d8
children 0c85be737139
files scripts/strings/strmatch.m src/ChangeLog src/version.h
diffstat 3 files changed, 7 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/strings/strmatch.m
+++ b/scripts/strings/strmatch.m
@@ -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')');
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
 2005-03-15  John W. Eaton  <jwe@octave.org>
 
+	* 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.
--- a/src/version.h
+++ b/src/version.h
@@ -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."