aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.c
diff options
context:
space:
mode:
Diffstat (limited to 'libstorycode/storycode.c')
-rw-r--r--libstorycode/storycode.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libstorycode/storycode.c b/libstorycode/storycode.c
index 18e5270..139af67 100644
--- a/libstorycode/storycode.c
+++ b/libstorycode/storycode.c
@@ -37,7 +37,6 @@
#include "storycode_parse.h"
#include "storycode_lex.h"
-#include "scparse_priv.h"
extern int scdebug;
@@ -46,15 +45,16 @@ extern int scdebug;
Narrative *storycode_parse_presentation(const char *sc)
{
YY_BUFFER_STATE b;
- struct scpctx parse_ctx;
+ Narrative *n;
b = sc_scan_string(sc);
//scdebug = 1;
- scparse(&parse_ctx);
+ n = narrative_new();
+ scparse(n);
sc_delete_buffer(b);
- //narrative_debug(parse_ctx.n);
+ //narrative_debug(n);
- return parse_ctx.n;
+ return n;
}