diff scripts/strings/rindex.m @ 6046:34f96dd5441b

[project @ 2006-10-10 16:10:25 by jwe]
author jwe
date Tue, 10 Oct 2006 16:10:31 +0000
parents ec8c33dcd1bf
children 4da9f63d5237
line wrap: on
line diff
--- a/scripts/strings/rindex.m	Mon Oct 09 21:40:46 2006 +0000
+++ b/scripts/strings/rindex.m	Tue Oct 10 16:10:31 2006 +0000
@@ -38,7 +38,7 @@
   ## This is patterned after the AWK function of the same name.
 
   if (nargin != 2)
-    usage ("rindex (s, t)");
+    print_usage ();
   endif
 
   if (!ischar (s) || !ischar (t) || all (size (s) > 1) || all (size (t) > 1) )