comparison src/ov-builtin.cc @ 5155:ee50a5f1e541

[project @ 2005-02-21 21:39:24 by jwe]
author jwe
date Mon, 21 Feb 2005 21:39:24 +0000
parents 9cb38bfb04ea
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5154:9cb38bfb04ea 5155:ee50a5f1e541
60 60
61 switch (type[0]) 61 switch (type[0])
62 { 62 {
63 case '(': 63 case '(':
64 { 64 {
65 int tmp_nargout = (type.length () > 0 && nargout == 0) ? 1 : nargout; 65 int tmp_nargout = (type.length () > 1 && nargout == 0) ? 1 : nargout;
66 66
67 retval = do_multi_index_op (tmp_nargout, idx.front ()); 67 retval = do_multi_index_op (tmp_nargout, idx.front ());
68 } 68 }
69 break; 69 break;
70 70