diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2011-01-30 16:05:37 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2011-01-30 16:05:37 +0000 |
commit | 45f655402ed9aece7ea3dfffb8007a8c753d6f4a (patch) | |
tree | a5347280c09b16427b521363bd2553cffd890bf8 /out.h | |
parent | 640a3cb4e4b0817868c63e57d68bbbf3229fb254 (diff) | |
download | mandoc-45f655402ed9aece7ea3dfffb8007a8c753d6f4a.tar.gz |
Implement the \N'number' (numbered character) roff escape sequence.
Don't use it in new manuals, it is inherently non-portable, but we
need it for backward-compatibility with existing manuals, for example
in Xenocara driver pages.
ok kristaps@ jmc@ and tested by Matthieu Herrb (matthieu at openbsd dot org)
Diffstat (limited to 'out.h')
-rw-r--r-- | out.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv> + * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -52,6 +52,7 @@ enum roffscale { enum roffdeco { DECO_NONE, + DECO_NUMBERED, /* numbered character */ DECO_SPECIAL, /* special character */ DECO_SSPECIAL, /* single-char special */ DECO_RESERVED, /* reserved word */ |