aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.cpp
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-11-19 22:30:17 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-11-20 06:07:33 +0100
commit6bf314fa5193872e26e3eaabe222ee1e2a823c08 (patch)
tree11791308915b3d2e42ed9db81ff28fd3ed441eee /parser.cpp
parent90f203bff189706c2dec34482475b89d0a232597 (diff)
downloadsciteco-6bf314fa5193872e26e3eaabe222ee1e2a823c08.tar.gz
goto table cleanup
Diffstat (limited to 'parser.cpp')
-rw-r--r--parser.cpp4
1 files changed, 2 insertions, 2 deletions
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, &macro, 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;
}