Mercurial > hg > octave-nkf
diff src/ov.h @ 3195:7a5a5da64756
[project @ 1998-10-28 22:54:04 by jwe]
author | jwe |
---|---|
date | Wed, 28 Oct 1998 23:01:17 +0000 |
parents | bef7b73c0724 |
children | 44d82b369c78 |
line wrap: on
line diff
--- a/src/ov.h +++ b/src/ov.h @@ -258,6 +258,9 @@ virtual int columns (void) const { return rep->columns (); } + virtual int length (void) const + { return rep->length (); } + // Does this constant have a type? Both of these are provided since // it is sometimes more natural to write is_undefined() instead of // ! is_defined(). @@ -553,6 +556,10 @@ // Allow divide by zero errors to be suppressed. extern bool Vwarn_divide_by_zero; +// If TRUE, resize matrices when performing and indexed assignment and +// the indices are outside the current bounds. +extern bool Vresize_on_range_error; + // Indentation level for structures. extern int struct_indent;