diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-02 03:48:07 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-07-02 03:48:07 +0000 |
commit | 6953ebc600f2fbc755c081f62f54e09e92399d68 (patch) | |
tree | 1e47ae2fa2358a5af6a9ee8178e35fff7d034614 /mdoc.c | |
parent | 86806389168051f6ba486c442c442708d5e0fa73 (diff) | |
download | mandoc-6953ebc600f2fbc755c081f62f54e09e92399d68.tar.gz |
Implement the obsolete macros .En .Es .Fr .Ot for backward compatibility,
since this is hardly more complicated than explicitly ignoring them
as we did in the past. Of course, do not use them!
Diffstat (limited to 'mdoc.c')
-rw-r--r-- | mdoc.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -516,6 +516,8 @@ mdoc_block_alloc(struct mdoc *mdoc, int line, int pos, /* FALLTHROUGH */ case MDOC_Bl: /* FALLTHROUGH */ + case MDOC_En: + /* FALLTHROUGH */ case MDOC_Rs: p->norm = mandoc_calloc(1, sizeof(union mdoc_data)); break; |