summaryrefslogtreecommitdiff
path: root/src/render.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-06-01 14:58:58 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2016-06-01 14:58:58 -0700
commit60bd289c18e06e199260ee374ef29e3017bc4a90 (patch)
tree0785dcf68fc575fbc5bb9a73b7872c2ccd4d1b5a /src/render.h
parentbe020e1928f2d0750573730483dd4cb40140935a (diff)
renderer: no_linebreaks instead of no_wrap.
We generally want this option to prohibit any breaking in things like headers (not just wraps, but softbreaks).
Diffstat (limited to 'src/render.h')
-rw-r--r--src/render.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render.h b/src/render.h
index 479936a..c3acf6b 100644
--- a/src/render.h
+++ b/src/render.h
@@ -20,7 +20,7 @@ struct cmark_renderer {
bufsize_t last_breakable;
bool begin_line;
bool begin_content;
- bool no_wrap;
+ bool no_linebreaks;
bool in_tight_list_item;
void (*outc)(struct cmark_renderer *, cmark_escaping, int32_t, unsigned char);
void (*cr)(struct cmark_renderer *);