Mercurial > hg > octave-nkf
diff src/strfns.cc @ 13915:5fa482628bf6
Remove unnecessary regular expression '.*' from ends of %!error blocks
* betainc.cc, chol.cc, dassl.cc, det.cc, eig.cc, find.cc, gcd.cc, hess.cc,
inv.cc, lsode.cc, lu.cc, max.cc, qr.cc, quad.cc, schur.cc, sub2ind.cc, svd.cc,
syl.cc, time.cc, data.cc, mappers.cc, strfns.cc, test_io.m, test_struct.m,
test_system.m: Remove unnecessary regular expression '.*' from ends of
%!error blocks
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Tue, 22 Nov 2011 18:26:28 -0800 |
parents | 98d23b0f16e1 |
children | 050bc580cb60 |
line wrap: on
line diff
--- a/src/strfns.cc +++ b/src/strfns.cc @@ -332,8 +332,8 @@ %!assert(ischar ("test"), logical (1)); %!assert(ischar (["test"; "ing"]), logical (1)); %!assert(ischar (struct ("foo", "bar")), logical (0)); -%!error <Invalid call to ischar.*> ischar (); -%!error <Invalid call to ischar.*> ischar ("test", 1); +%!error <Invalid call to ischar> ischar (); +%!error <Invalid call to ischar> ischar ("test", 1); */ static octave_value @@ -589,8 +589,8 @@ } /* -%!error <Invalid call to strcmp.*> strcmp (); -%!error <Invalid call to strcmp.*> strcmp ("foo", "bar", 3); +%!error <Invalid call to strcmp> strcmp (); +%!error <Invalid call to strcmp> strcmp ("foo", "bar", 3); %! %!shared x %! x = char (zeros (0, 2)); @@ -712,8 +712,8 @@ } /* -%!error <Invalid call to strncmp.*> strncmp (); -%!error <Invalid call to strncmp.*> strncmp ("abc", "def"); +%!error <Invalid call to strncmp> strncmp (); +%!error <Invalid call to strncmp> strncmp ("abc", "def"); %!assert (strncmp ("abce", "abc", 3) == 1) %!assert (strncmp (100, 100, 1) == 0) %!assert (all (strncmp ("abce", {"abcd", "bca", "abc"}, 3) == [1, 0, 1])) @@ -922,9 +922,9 @@ } /* -%!error <Invalid call to list_in_columns.*> list_in_columns (); -%!error <Invalid call to list_in_columns.*> list_in_columns (["abc", "def"], 20, 2); -%!error <invalid conversion from string to real scalar.*> list_in_columns (["abc", "def"], "a"); +%!error <Invalid call to list_in_columns> list_in_columns (); +%!error <Invalid call to list_in_columns> list_in_columns (["abc", "def"], 20, 2); +%!error <invalid conversion from string to real scalar> list_in_columns (["abc", "def"], "a"); %!test %! input = {"abc", "def", "ghijkl", "mnop", "qrs", "tuv"}; %! result = "abc mnop\ndef qrs\nghijkl tuv\n";