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	Sat May 03 22:48:24 2008 -0400
+++ b/src/help.cc	Sun May 04 03:42:19 2008 -0400
@@ -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;