summaryrefslogtreecommitdiff
path: root/src/blocks.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-16 16:32:43 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-16 16:32:43 -0800
commit5afeed7e21743752e5bcb49337e1c22d9a6f75c1 (patch)
tree24c6f979b67322f203dfdc155adb7224b02dc930 /src/blocks.c
parent4e587e8be5300d80e23ffeec5b11ba3eedf61276 (diff)
Removed CMARK_CODE_INDENT, CODE_INDENT from public header.
Now it's in blocks.c, the only module that uses it.
Diffstat (limited to 'src/blocks.c')
-rw-r--r--src/blocks.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/blocks.c b/src/blocks.c
index f95e94e..22545b5 100644
--- a/src/blocks.c
+++ b/src/blocks.c
@@ -14,6 +14,7 @@
#include "buffer.h"
#include "debug.h"
+#define CODE_INDENT 4
#define peek_at(i, n) (i)->data[n]
static node_block* make_block(cmark_block_tag tag, int start_line, int start_column)