summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib
diff options
context:
space:
mode:
authorbentley <>2014-11-15 14:41:02 +0000
committerbentley <>2014-11-15 14:41:02 +0000
commit813e05067c1117845b5dd361512d5c36f5e7058c (patch)
tree7d98dc3db731a7bbcefcd4d3eb4ea24e99bd0333 /src/lib/libc/stdlib
parent914b996e03c70669eceeed1ebc536033930db17b (diff)
downloadopenbsd-813e05067c1117845b5dd361512d5c36f5e7058c.tar.gz
openbsd-813e05067c1117845b5dd361512d5c36f5e7058c.tar.bz2
openbsd-813e05067c1117845b5dd361512d5c36f5e7058c.zip
Reduce instances of `` '' in manuals.
troff displays these as typographic quotes, but nroff implementations almost always print them literally, which rarely has the intended effect with modern fonts, even in stock xterm. These uses of `` '' can be replaced either with more semantic alternatives or with Dq, which prints typographic quotes in a UTF-8 locale (but will automatically fall back to `` '' in an ASCII locale). improvements and ok schwarze@
Diffstat (limited to 'src/lib/libc/stdlib')
-rw-r--r--src/lib/libc/stdlib/getsubopt.310
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libc/stdlib/getsubopt.3 b/src/lib/libc/stdlib/getsubopt.3
index ef813430de..335a4b9c07 100644
--- a/src/lib/libc/stdlib/getsubopt.3
+++ b/src/lib/libc/stdlib/getsubopt.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: getsubopt.3,v 1.13 2013/06/05 03:39:23 tedu Exp $ 1.\" $OpenBSD: getsubopt.3,v 1.14 2014/11/15 14:41:02 bentley Exp $
2.\" 2.\"
3.\" Copyright (c) 1990, 1991, 1993 3.\" Copyright (c) 1990, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
29.\" 29.\"
30.\" @(#)getsubopt.3 8.1 (Berkeley) 6/9/93 30.\" @(#)getsubopt.3 8.1 (Berkeley) 6/9/93
31.\" 31.\"
32.Dd $Mdocdate: June 5 2013 $ 32.Dd $Mdocdate: November 15 2014 $
33.Dt GETSUBOPT 3 33.Dt GETSUBOPT 3
34.Os 34.Os
35.Sh NAME 35.Sh NAME
@@ -107,17 +107,17 @@ char *options, *value;
107while ((ch = getopt(argc, argv, "ab:")) != -1) { 107while ((ch = getopt(argc, argv, "ab:")) != -1) {
108 switch (ch) { 108 switch (ch) {
109 case 'a': 109 case 'a':
110 /* process ``a'' option */ 110 /* process "a" option */
111 break; 111 break;
112 case 'b': 112 case 'b':
113 options = optarg; 113 options = optarg;
114 while (*options) { 114 while (*options) {
115 switch (getsubopt(&options, tokens, &value)) { 115 switch (getsubopt(&options, tokens, &value)) {
116 case ONE: 116 case ONE:
117 /* process ``one'' sub option */ 117 /* process "one" sub option */
118 break; 118 break;
119 case TWO: 119 case TWO:
120 /* process ``two'' sub option */ 120 /* process "two" sub option */
121 if (!value) 121 if (!value)
122 error("no value for two"); 122 error("no value for two");
123 i = atoi(value); 123 i = atoi(value);