diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 11:45:00 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 11:45:00 -0800 |
commit | 2145ef0fe27f1db9a2e6d981df996298d94fbdae (patch) | |
tree | d4c1b930699c5af44318904fda2299f5697f181e /src/inlines.c | |
parent | f706feb47054f594bb4585558268264ae7b4346e (diff) | |
parent | 6846f65f182b9c927ed8db500341a9f403e8df8e (diff) |
Merge pull request #195 from nwellnhof/fix_namespace_pollution
Fix namespace pollution
Diffstat (limited to 'src/inlines.c')
-rw-r--r-- | src/inlines.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inlines.c b/src/inlines.c index 254ebb6..6a4e70c 100644 --- a/src/inlines.c +++ b/src/inlines.c @@ -112,7 +112,7 @@ inline static node_inl* make_simple(int t) #define make_strong(contents) make_inlines(INL_STRONG, contents) // Utility function used by free_inlines -void splice_into_list(node_inl* e, node_inl* children) { +static void splice_into_list(node_inl* e, node_inl* children) { node_inl * tmp; if (children) { tmp = children; @@ -948,7 +948,7 @@ extern node_inl* parse_inlines(strbuf *input, reference_map *refmap) } // Parse zero or more space characters, including at most one newline. -void spnl(subject* subj) +static void spnl(subject* subj) { bool seen_newline = false; while (peek_char(subj) == ' ' || |