diff options
| author | Jerry Jelinek <jerry.jelinek@joyent.com> | 2017-08-14 11:53:49 +0000 | 
|---|---|---|
| committer | Jerry Jelinek <jerry.jelinek@joyent.com> | 2017-08-14 11:53:49 +0000 | 
| commit | f3156461964256d1c034e49b880a19bc94c1c281 (patch) | |
| tree | 14cb627993b9ee1af94fa83fbf8c41cf227c3189 /usr/src/cmd/mandoc/chars.c | |
| parent | aea86460f0918659f2a8637f97b2055272a86c98 (diff) | |
| parent | 5e9f42abf61392dc608a661563fb49e7707f0478 (diff) | |
| download | illumos-joyent-f3156461964256d1c034e49b880a19bc94c1c281.tar.gz | |
	[illumos-gate merge]
commit 5e9f42abf61392dc608a661563fb49e7707f0478
    8559 Add EFI utility functions to libefi
commit c66b8046543352459a11a51501b628d1c98a8c44
    8547 update mandoc to 1.14.3
commit 12014b724f98604d61f9756b7e199416475d7396
    8573 cmd/krb5: dmake should build 'all' as default target
Diffstat (limited to 'usr/src/cmd/mandoc/chars.c')
| -rw-r--r-- | usr/src/cmd/mandoc/chars.c | 21 | 
1 files changed, 19 insertions, 2 deletions
| diff --git a/usr/src/cmd/mandoc/chars.c b/usr/src/cmd/mandoc/chars.c index f1f5d5d78c..039e6dc090 100644 --- a/usr/src/cmd/mandoc/chars.c +++ b/usr/src/cmd/mandoc/chars.c @@ -1,7 +1,7 @@ -/*	$Id: chars.c,v 1.69 2017/02/17 18:28:06 schwarze Exp $ */ +/*	$Id: chars.c,v 1.71 2017/06/14 20:57:07 schwarze Exp $ */  /*   * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> - * Copyright (c) 2011, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> + * Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>   *   * Permission to use, copy, modify, and distribute this software for any   * purpose with or without fee is hereby granted, provided that the above @@ -61,6 +61,7 @@ static struct ln lines[] = {  	{ "ba",			"|",		0x007c	},  	{ "br",			"|",		0x2502	},  	{ "ul",			"_",		0x005f	}, +	{ "ru",			"_",		0x005f	},  	{ "rn",			"-",		0x203e	},  	{ "bb",			"|",		0x00a6	},  	{ "sl",			"/",		0x002f	}, @@ -81,6 +82,10 @@ static struct ln lines[] = {  	{ "sh",			"#",		0x0023	},  	{ "CR",			"_|",		0x21b5	},  	{ "OK",			"\\/",		0x2713	}, +	{ "CL",			"<club>",	0x2663	}, +	{ "SP",			"<spade>",	0x2660	}, +	{ "HE",			"<heart>",	0x2665	}, +	{ "DI",			"<diamond>",	0x2666	},  	/* Legal symbols. */  	{ "co",			"(C)",		0x00a9	}, @@ -161,6 +166,7 @@ static struct ln lines[] = {  	{ "uA",			"=\b^",		0x21d1	},  	{ "dA",			"=\bv",		0x21d3	},  	{ "vA",			"^=v",		0x21d5	}, +	{ "an",			"-",		0x23af	},  	/* Logic. */  	{ "AN",			"^",		0x2227	}, @@ -234,11 +240,20 @@ static struct ln lines[] = {  	{ "Ah",			"N",		0x2135	},  	{ "Im",			"I",		0x2111	},  	{ "Re",			"R",		0x211c	}, +	{ "wp",			"P",		0x2118	},  	{ "pd",			"a",		0x2202	},  	{ "-h",			"/h",		0x210f	}, +	{ "hbar",		"/h",		0x210f	},  	{ "12",			"1/2",		0x00bd	},  	{ "14",			"1/4",		0x00bc	},  	{ "34",			"3/4",		0x00be	}, +	{ "18",			"1/8",		0x215B	}, +	{ "38",			"3/8",		0x215C	}, +	{ "58",			"5/8",		0x215D	}, +	{ "78",			"7/8",		0x215E	}, +	{ "S1",			"1",		0x00B9	}, +	{ "S2",			"2",		0x00B2	}, +	{ "S3",			"3",		0x00B3	},  	/* Ligatures. */  	{ "ff",			"ff",		0xfb00	}, @@ -354,6 +369,8 @@ static struct ln lines[] = {  	{ "fm",			"\'",		0x2032	},  	{ "sd",			"''",		0x2033	},  	{ "mc",			",\bu",		0x00b5	}, +	{ "Of",			"_\ba",		0x00aa	}, +	{ "Om",			"_\bo",		0x00ba	},  	/* Greek characters. */  	{ "*A",			"A",		0x0391	}, | 
