diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-26 10:36:46 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-26 10:36:46 +0000 |
commit | 6e68d3d4aa900bf9e03f073ed1c2369ed77708bf (patch) | |
tree | cb27ba39bf55534bb75258434eb256bee0b96564 /mdoc_action.c | |
parent | 9ff38b1454e6f97e5bc4a73b821f62bf1c677b23 (diff) | |
download | mandoc-6e68d3d4aa900bf9e03f073ed1c2369ed77708bf.tar.gz |
Fix to segfault in ordering Rs blocks (d'oh!).VERSION.1.9.11
Version: 1.9.11.
Diffstat (limited to 'mdoc_action.c')
-rw-r--r-- | mdoc_action.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index 4c9ae153..596af7bb 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -192,7 +192,7 @@ static const struct actions mdoc_actions[MDOC_MAX] = { { NULL, NULL }, /* %U */ }; -#define RSORD_MAX 13 +#define RSORD_MAX 14 static const int rsord[RSORD_MAX] = { MDOC__A, @@ -207,7 +207,8 @@ static const int rsord[RSORD_MAX] = { MDOC__Q, MDOC__D, MDOC__O, - MDOC__C + MDOC__C, + MDOC__U }; |