aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-09-14 23:45:38 +0200
committerThomas White <taw@bitwiz.me.uk>2019-09-14 23:45:38 +0200
commitc6abe4626c40d4925d6233cf0ca1c30cd49a22cd (patch)
tree4c2b419987f909695993c9b2b51a335fa1b67111 /src
parentbef894ac4fc76a7c163fba44a8127162a6c40d2b (diff)
Handle *bold* in parser, rather than as a separate stage
Diffstat (limited to 'src')
-rw-r--r--src/colloquium.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/colloquium.c b/src/colloquium.c
index 95b5231..745ccef 100644
--- a/src/colloquium.c
+++ b/src/colloquium.c
@@ -62,7 +62,7 @@ static void colloquium_activate(GApplication *papp)
Colloquium *app = COLLOQUIUM(papp);
if ( !app->first_run ) {
Narrative *n = narrative_new();
- narrative_add_text(n, strdup(""));
+ narrative_add_empty_item(n);
narrative_window_new(n, NULL, papp);
}
}