Mercurial > hg > octave-lyh
diff src/help.cc @ 7752:40c428ea3408
initial implementation of dbup and dbdown
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sun, 04 May 2008 03:42:19 -0400 |
parents | 6873fe003323 |
children | a2ab20ba78f7 |
line wrap: on
line diff
--- a/src/help.cc +++ b/src/help.cc @@ -567,12 +567,12 @@ string_vector bif = symbol_table::built_in_function_names (); int bif_len = bif.length (); - string_vector glb - = symbol_table::variable_names (symbol_table::global_scope ()); + // FIXME -- is this really necessary here? + string_vector glb = symbol_table::global_variable_names (); int glb_len = glb.length (); - string_vector top - = symbol_table::variable_names (symbol_table::top_scope ()); + // FIXME -- is this really necessary here? + string_vector top = symbol_table::top_level_variable_names (); int top_len = top.length (); string_vector lcl;