summaryrefslogtreecommitdiff
path: root/format.c
diff options
context:
space:
mode:
Diffstat (limited to 'format.c')
-rw-r--r--format.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/format.c b/format.c
index d149def..7ded83c 100644
--- a/format.c
+++ b/format.c
@@ -98,8 +98,9 @@ d_char *not_really_markdown(const char *content)
98 char *p, *v; 98 char *p, *v;
99 99
100 /* work by lines */ 100 /* work by lines */
101 p = list = xs_split(content, "\n"); 101 list = xs_split(content, "\n");
102 102
103 p = list;
103 while (xs_list_iter(&p, &v)) { 104 while (xs_list_iter(&p, &v)) {
104 xs *ss = NULL; 105 xs *ss = NULL;
105 106