changeset 4951:0a21e1bf18c4

[project @ 2004-08-31 21:27:10 by jwe]
author jwe
date Tue, 31 Aug 2004 21:27:10 +0000
parents 0896307b1b48
children bfd57b466752
files scripts/general/isa.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/general/isa.m	Tue Aug 31 21:26:35 2004 +0000
+++ b/scripts/general/isa.m	Tue Aug 31 21:27:10 2004 +0000
@@ -26,5 +26,5 @@
 ## Adapted-by: jwe
 
 function retval = isa (x, cname)
-  retval = strcmp (class (f), cname);
+  retval = strcmp (class (x), cname);
 endfunction