diff scripts/strings/rindex.m @ 2355:c9f70d39255f

[project @ 1996-08-20 23:30:54 by jwe]
author jwe
date Tue, 20 Aug 1996 23:32:09 +0000
parents b5568c31ee2c
children 4f40efa995c1
line wrap: on
line diff
--- a/scripts/strings/rindex.m
+++ b/scripts/strings/rindex.m
@@ -24,14 +24,13 @@
 ##
 ## NOTE: this function does not work for arrays of strings.
 
-## Author: jwe
+## Author: Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
+## Adapted-By: jwe
 
 function n = rindex (s, t)
 
   ## This is patterned after the AWK function of the same name.
 
-  ## Original version by Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>.
-
   if (nargin != 2)
     usage ("rindex (s, t)");
   endif