From 6bf314fa5193872e26e3eaabe222ee1e2a823c08 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Mon, 19 Nov 2012 22:30:17 +0100 Subject: goto table cleanup --- parser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'parser.cpp') diff --git a/parser.cpp b/parser.cpp index 25c940b..5d41b5e 100644 --- a/parser.cpp +++ b/parser.cpp @@ -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; } -- cgit v1.2.3