diff options
Diffstat (limited to 'parser.cpp')
-rw-r--r-- | parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -71,7 +71,7 @@ file_execute(const gchar *filename) macro_pc = 0; States::current = &States::start; - goto_table = &file_goto_table; + Goto::table = &file_goto_table; if (!g_file_get_contents(filename, ¯o, NULL, NULL)) return false; @@ -89,7 +89,7 @@ file_execute(const gchar *filename) macro_pc = 0; States::current = &States::start; - goto_table = NULL; + Goto::table = NULL; return true; } |