From 9a1812bd4948508f2e5df3fcc9184851e8bb2035 Mon Sep 17 00:00:00 2001
From: Mikael Vejdemo-Johansson <michiexile@gmail.com>
Date: Wed, 8 Apr 2015 13:44:14 +0200
Subject: [PATCH] added ties to build script

---
 examples/SConscript | 3 ++-
 examples/ties.c     | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/examples/SConscript b/examples/SConscript
index 07c6e515..456545c2 100644
--- a/examples/SConscript
+++ b/examples/SConscript
@@ -8,4 +8,5 @@ base64 = example.Program('base64', 'base64.c')
 base64_sem1 = example.Program('base64_sem1', 'base64_sem1.c')
 base64_sem2 = example.Program('base64_sem2', 'base64_sem2.c')
 singular = example.Program('explore_singular', 'explore_singular.c')
-env.Alias("examples", [dns, base64, base64_sem1, base64_sem2, singular])
\ No newline at end of file
+ties = example.Program('ties', 'ties.c')
+env.Alias("examples", [dns, base64, base64_sem1, base64_sem2, singular, ties])
\ No newline at end of file
diff --git a/examples/ties.c b/examples/ties.c
index b8cc9fd9..c7d2de78 100644
--- a/examples/ties.c
+++ b/examples/ties.c
@@ -318,7 +318,7 @@ int main(int argc, char **argv)
   HAllocator *mm__ = &system_allocator;
 
 
-  HCFGrammar *g = h_cfgrammar_(mm__, h_desugar_augmented(mm__, cfExample()));
+  HCFGrammar *g = h_cfgrammar_(mm__, h_desugar_augmented(mm__, finkmaoTW()));
   if (g == NULL) {
     fprintf(stderr, "h_cfgrammar failed\n");
     return 1;
-- 
GitLab