summaryrefslogtreecommitdiffstats
path: root/libmdoc.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 04:47:38 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-15 04:47:38 +0000
commit9910c76a0f15d7eed9a557972be5115b17ceacc2 (patch)
tree09a25748c49e5fda9b4cb748ca6dbb668f699367 /libmdoc.h
parent5fa55a22ad502f15707541af5206ee738f97227c (diff)
downloadmandoc-9910c76a0f15d7eed9a557972be5115b17ceacc2.tar.gz
More `Bl -column' dancing: It children also inherit in-phrase flags (noted by Ingo Schwarze).
Diffstat (limited to 'libmdoc.h')
-rw-r--r--libmdoc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmdoc.h b/libmdoc.h
index bf44541f..cff9a62b 100644
--- a/libmdoc.h
+++ b/libmdoc.h
@@ -32,7 +32,8 @@ struct mdoc {
#define MDOC_LITERAL (1 << 1) /* in a literal scope */
#define MDOC_PBODY (1 << 2) /* in the document body */
#define MDOC_NEWLINE (1 << 3) /* first macro/text in a line */
-#define MDOC_PHRASELIT (1 << 4) /* in a literal within a phrase */
+#define MDOC_PHRASELIT (1 << 4) /* literal within a partila phrase */
+#define MDOC_PPHRASE (1 << 5) /* within a partial phrase */
int pflags;
enum mdoc_next next;
struct mdoc_node *last;
@@ -189,7 +190,6 @@ enum margserr mdoc_zargs(struct mdoc *, int,
#define ARGS_DELIM (1 << 1)
#define ARGS_TABSEP (1 << 2)
#define ARGS_NOWARN (1 << 3)
-#define ARGS_PPHRASED (1 << 4)
int mdoc_macroend(struct mdoc *);