diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-07-26 01:59:47 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-07-26 01:59:47 +0000 |
commit | ea862ffebd1b3edfb0e63ade6580ea8f38df877a (patch) | |
tree | 7c8984e4c63b3ead0945ba4e750483902b05bd99 /usr.bin/mandoc/mdoc.h | |
parent | 08c20f5e2689ab51349ed5b046559e68ce57f37f (diff) |
sync to 1.8.1: support .br and .sp
Diffstat (limited to 'usr.bin/mandoc/mdoc.h')
-rw-r--r-- | usr.bin/mandoc/mdoc.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h index 65287ac056c..ca599499f4b 100644 --- a/usr.bin/mandoc/mdoc.h +++ b/usr.bin/mandoc/mdoc.h @@ -1,4 +1,4 @@ -/* $Id: mdoc.h,v 1.10 2009/07/18 19:44:38 schwarze Exp $ */ +/* $Id: mdoc.h,v 1.11 2009/07/26 01:59:46 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -147,7 +147,9 @@ #define MDOC_En 115 #define MDOC_Dx 116 #define MDOC__Q 117 -#define MDOC_MAX 118 +#define MDOC_br 118 +#define MDOC_sp 119 +#define MDOC_MAX 120 /* What follows is a list of ALL possible macro arguments. */ |