From 13947ca611561e1771f14469696ee61a53cebbe9 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 6 Jun 2015 23:09:50 +0200 Subject: astyle formatting changes. --- src/inlines.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/inlines.c') diff --git a/src/inlines.c b/src/inlines.c index 352ded3..8a1ee44 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -151,7 +151,7 @@ static cmark_chunk chunk_clone(cmark_chunk *src) memcpy(c.data, src->data, len); c.data[len] = '\0'; - return c; + return c; } static void subject_from_buf(subject *e, cmark_strbuf *buffer, @@ -307,9 +307,9 @@ scan_delims(subject* subj, unsigned char c, bool * can_open, bool * can_close) !utf8proc_is_punctuation(after_char)); if (c == '_') { *can_open = left_flanking && - (!right_flanking || utf8proc_is_punctuation(before_char)); + (!right_flanking || utf8proc_is_punctuation(before_char)); *can_close = right_flanking && - (!left_flanking || utf8proc_is_punctuation(after_char)); + (!left_flanking || utf8proc_is_punctuation(after_char)); } else if (c == '\'' || c == '"') { *can_open = left_flanking && !right_flanking; *can_close = right_flanking; -- cgit v1.2.3