aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/storycode.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2020-01-06 23:26:00 +0100
committerThomas White <taw@bitwiz.me.uk>2020-01-06 23:26:00 +0100
commitbe129f071c3d7b400c5b8a4ed145b6011123819f (patch)
tree2b50f921b480f05963b58d07cafef338accb9830 /libstorycode/storycode.c
parent9c45f71e39f0c0ded10d4c837dcaece44dcd379e (diff)
Fixes for copy, add text paste and hooks for SC paste
Diffstat (limited to 'libstorycode/storycode.c')
-rw-r--r--libstorycode/storycode.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libstorycode/storycode.c b/libstorycode/storycode.c
index 42c4820..983ae02 100644
--- a/libstorycode/storycode.c
+++ b/libstorycode/storycode.c
@@ -47,8 +47,9 @@ Narrative *storycode_parse_presentation(const char *sc)
YY_BUFFER_STATE b;
Narrative *n;
+ //BEGIN(0);
b = sc_scan_string(sc);
- //scdebug = 1;
+ scdebug = 1;
n = narrative_new();
scparse(n);
sc_delete_buffer(b);