Mercurial > hg > octave-nkf
comparison src/variables.h @ 5685:40b08b29dd53
[project @ 2006-03-16 19:47:14 by jwe]
author | jwe |
---|---|
date | Thu, 16 Mar 2006 19:47:14 +0000 |
parents | 775e065f7dc4 |
children | cbf717bf8150 |
comparison
equal
deleted
inserted
replaced
5684:f39adfd0913d | 5685:40b08b29dd53 |
---|---|
46 | 46 |
47 extern void initialize_symbol_tables (void); | 47 extern void initialize_symbol_tables (void); |
48 | 48 |
49 extern bool is_builtin_variable (const std::string&); | 49 extern bool is_builtin_variable (const std::string&); |
50 extern bool is_command_name (const std::string&); | 50 extern bool is_command_name (const std::string&); |
51 | |
52 // The next three are here temporarily... | |
53 extern bool is_marked_as_rawcommand (const std::string& s); | |
54 extern void mark_as_rawcommand (const std::string& s); | |
55 extern void unmark_rawcommand (const std::string& s); | |
56 | |
51 extern bool is_rawcommand_name (const std::string&); | 57 extern bool is_rawcommand_name (const std::string&); |
52 extern bool is_mapper_function_name (const std::string&); | 58 extern bool is_mapper_function_name (const std::string&); |
53 extern bool is_builtin_function_name (const std::string&); | 59 extern bool is_builtin_function_name (const std::string&); |
54 extern bool is_globally_visible (const std::string&); | 60 extern bool is_globally_visible (const std::string&); |
55 | 61 |