- Commit
- acd11e2766a10236750424453059abb2ab759d1e
- Parent
- 5fcc575ee3a77da65cb63cd43eb4235c851ce6ad
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Fixed bug in cmark_strbuf_unescape (buffer.c).
The old function called 'continue' when seeing a backslash,
but this gave incorrect results on input like:
\\*
since the next backslash would be treated as escaping the `*`
instead of being escaped itself.