summaryrefslogtreecommitdiff
path: root/src/inlines.c
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-02-18 15:55:04 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-02-18 15:55:04 -0800
commit17e4a8203dc24ecee990ba3e8880092a1864e12e (patch)
tree09f7fab6bd4a357219a2ed45832754d46f5307f2 /src/inlines.c
parent3886843e12c564efdbf233b294d451ac25be93bc (diff)
Repacked delimiter struct to avoid hole.
Diffstat (limited to 'src/inlines.c')
-rw-r--r--src/inlines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inlines.c b/src/inlines.c
index 4e6a30a..9ed7d46 100644
--- a/src/inlines.c
+++ b/src/inlines.c
@@ -36,8 +36,8 @@ typedef struct delimiter {
struct delimiter *previous;
struct delimiter *next;
cmark_node *inl_text;
- unsigned char delim_char;
int position;
+ unsigned char delim_char;
bool can_open;
bool can_close;
bool active;