aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/eqn.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-07-23 18:44:42 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-07-23 18:44:42 +0000
commit3df885cd6a6e876defef8940073b80b0b301ed63 (patch)
tree9e3298fe2d8a16204171c85567913ec3dbe8d2b4 /eqn.c
parent30f55adc136c204d3d558b367edbc380844a2929 (diff)
downloadmandoc-3df885cd6a6e876defef8940073b80b0b301ed63.tar.gz
mandoc-3df885cd6a6e876defef8940073b80b0b301ed63.tar.zst
mandoc-3df885cd6a6e876defef8940073b80b0b301ed63.zip
Note GNU extensions in eqn.7. Also add `col' and `pile', which are
mentioned briefly in the eqn User's Manual, but otherwise are unspecified.
Diffstat (limited to 'eqn.c')
-rw-r--r--eqn.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/eqn.c b/eqn.c
index da085fa1..9c3b9783 100644
--- a/eqn.c
+++ b/eqn.c
@@ -1,4 +1,4 @@
-/* $Id: eqn.c,v 1.36 2011/07/23 18:41:18 kristaps Exp $ */
+/* $Id: eqn.c,v 1.37 2011/07/23 18:44:42 kristaps Exp $ */
/*
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -205,9 +205,11 @@ static const struct eqnstr eqnposs[EQNPOS__MAX] = {
static const struct eqnstr eqnpiles[EQNPILE__MAX] = {
{ "", 0 }, /* EQNPILE_NONE */
+ { "pile", 4 }, /* EQNPILE_PILE */
{ "cpile", 5 }, /* EQNPILE_CPILE */
{ "rpile", 5 }, /* EQNPILE_RPILE */
{ "lpile", 5 }, /* EQNPILE_LPILE */
+ { "col", 3 }, /* EQNPILE_COL */
{ "ccol", 4 }, /* EQNPILE_CCOL */
{ "rcol", 4 }, /* EQNPILE_RCOL */
{ "lcol", 4 }, /* EQNPILE_LCOL */