summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/inlines.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inlines.c b/src/inlines.c
index 0f1a3d3..0bdc829 100644
--- a/src/inlines.c
+++ b/src/inlines.c
@@ -9,6 +9,7 @@
#include "utf8.h"
#include "scanners.h"
#include "inlines.h"
+#include "debug.h"
typedef struct InlineStack {
struct InlineStack *previous;
@@ -164,6 +165,7 @@ extern void free_inlines(node_inl* e)
splice_into_list(e, e->content.inlines);
break;
default:
+ log_warn("Unknown inline tag %d", e->tag);
break;
}
next = e->next;