summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorAnthony J. Bentley <bentley@cvs.openbsd.org>2014-11-15 14:41:04 +0000
committerAnthony J. Bentley <bentley@cvs.openbsd.org>2014-11-15 14:41:04 +0000
commitd6a0f0865df6bfd123b8ce711276173f1d8cbaa9 (patch)
treee12333cdaea900019b1f35b2a5adc13985cd7802 /lib/libc/stdlib
parent4a23754df430199a403e1215d9387e5b9e25b36f (diff)
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 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/getsubopt.310
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/stdlib/getsubopt.3 b/lib/libc/stdlib/getsubopt.3
index ef813430de3..335a4b9c07c 100644
--- a/lib/libc/stdlib/getsubopt.3
+++ b/lib/libc/stdlib/getsubopt.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getsubopt.3,v 1.13 2013/06/05 03:39:23 tedu Exp $
+.\" $OpenBSD: getsubopt.3,v 1.14 2014/11/15 14:41:02 bentley Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -29,7 +29,7 @@
.\"
.\" @(#)getsubopt.3 8.1 (Berkeley) 6/9/93
.\"
-.Dd $Mdocdate: June 5 2013 $
+.Dd $Mdocdate: November 15 2014 $
.Dt GETSUBOPT 3
.Os
.Sh NAME
@@ -107,17 +107,17 @@ char *options, *value;
while ((ch = getopt(argc, argv, "ab:")) != -1) {
switch (ch) {
case 'a':
- /* process ``a'' option */
+ /* process "a" option */
break;
case 'b':
options = optarg;
while (*options) {
switch (getsubopt(&options, tokens, &value)) {
case ONE:
- /* process ``one'' sub option */
+ /* process "one" sub option */
break;
case TWO:
- /* process ``two'' sub option */
+ /* process "two" sub option */
if (!value)
error("no value for two");
i = atoi(value);