summaryrefslogtreecommitdiff
path: root/man/man3
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-12-23 08:22:24 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-12-23 08:22:24 -0800
commit3a499838a1bfa6d84852118fdd8775eac339a754 (patch)
tree342c92a4068d121ac5f81ea2f4e1a02e9e3ef6c9 /man/man3
parent050ef111b02691679c2eb825102a3508630f0a55 (diff)
Added parens around expressions like 1 << 1.
Diffstat (limited to 'man/man3')
-rw-r--r--man/man3/cmark.314
1 files changed, 7 insertions, 7 deletions
diff --git a/man/man3/cmark.3 b/man/man3/cmark.3
index d5532d5..0341b6d 100644
--- a/man/man3/cmark.3
+++ b/man/man3/cmark.3
@@ -1,4 +1,4 @@
-.TH cmark 3 "December 22, 2015" "LOCAL" "Library Functions Manual"
+.TH cmark 3 "December 23, 2015" "LOCAL" "Library Functions Manual"
.SH
NAME
.PP
@@ -550,7 +550,7 @@ Options affecting rendering
.nf
\fC
.RS 0n
-#define CMARK_OPT_SOURCEPOS 1 << 1
+#define CMARK_OPT_SOURCEPOS (1 << 1)
.RE
\f[]
.fi
@@ -562,7 +562,7 @@ Include a \f[C]data\-sourcepos\f[] attribute on all block elements.
.nf
\fC
.RS 0n
-#define CMARK_OPT_HARDBREAKS 1 << 2
+#define CMARK_OPT_HARDBREAKS (1 << 2)
.RE
\f[]
.fi
@@ -574,7 +574,7 @@ Render \f[C]softbreak\f[] elements as hard line breaks.
.nf
\fC
.RS 0n
-#define CMARK_OPT_SAFE 1 << 3
+#define CMARK_OPT_SAFE (1 << 3)
.RE
\f[]
.fi
@@ -593,7 +593,7 @@ Options affecting parsing
.nf
\fC
.RS 0n
-#define CMARK_OPT_NORMALIZE 1 << 8
+#define CMARK_OPT_NORMALIZE (1 << 8)
.RE
\f[]
.fi
@@ -605,7 +605,7 @@ Normalize tree by consolidating adjacent text nodes.
.nf
\fC
.RS 0n
-#define CMARK_OPT_VALIDATE_UTF8 1 << 9
+#define CMARK_OPT_VALIDATE_UTF8 (1 << 9)
.RE
\f[]
.fi
@@ -618,7 +618,7 @@ with the replacement character U+FFFD.
.nf
\fC
.RS 0n
-#define CMARK_OPT_SMART 1 << 10
+#define CMARK_OPT_SMART (1 << 10)
.RE
\f[]
.fi