Mercurial > hg > octave-lyh
diff src/parse.y @ 2859:00c0cd0f2ee7
[project @ 1997-03-31 19:02:32 by jwe]
author | jwe |
---|---|
date | Mon, 31 Mar 1997 19:02:37 +0000 |
parents | 5448c8cba402 |
children | 95e85daad148 |
line wrap: on
line diff
--- a/src/parse.y +++ b/src/parse.y @@ -1457,7 +1457,7 @@ if (op1->is_constant () && op2->is_constant ()) { - octave_value tmp = e->eval (0); + octave_value tmp = e->eval (); if (! error_state) { @@ -1499,7 +1499,7 @@ if (op1->is_constant ()) { - octave_value tmp = e->eval (0); + octave_value tmp = e->eval (); if (! error_state) { @@ -1546,7 +1546,7 @@ if (base->is_constant () && limit->is_constant () && (! incr || (incr && incr->is_constant ()))) { - octave_value tmp = e->eval (0); + octave_value tmp = e->eval (); if (! error_state) { @@ -2311,7 +2311,7 @@ if (m->all_elements_are_constant ()) { - octave_value tmp = m->eval (0); + octave_value tmp = m->eval (); if (! error_state) {