summaryrefslogtreecommitdiff
path: root/src/ptx.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-08 14:08:03 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:50:08 +0100
commit9af0dced5a2eb167ec7b9dfe3f358f214e45d41a (patch)
treeb182495d17047e581cbee89db69d76d87173b0cc /src/ptx.c
parent36b9a1b6ac2730e78c14552fd55795fe10862a3d (diff)
downloadcoreutils-9af0dced5a2eb167ec7b9dfe3f358f214e45d41a.tar.xz
maint: convert `...' to '...' in --help output
All affected lines end with \ or \n\, so run this command until it produces no new changes (4 times): git grep -E -l '`[^ ]+'\''.*\\' src \ |xargs perl -pi -e 's/`([^ ]+'\''.*\\)/'\''$1/'
Diffstat (limited to 'src/ptx.c')
-rw-r--r--src/ptx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ptx.c b/src/ptx.c
index 668a31d05..3e64fa131 100644
--- a/src/ptx.c
+++ b/src/ptx.c
@@ -1089,7 +1089,7 @@ print_field (BLOCK field)
break;
case 3: /* Grave accent */
- printf ("\\`%s%c", (base == 'i' ? "\\" : ""), base);
+ printf ("\\'%s%c", (base == 'i' ? "\\" : ""), base);
break;
case 4: /* Circumflex accent */
@@ -1827,11 +1827,11 @@ Mandatory arguments to long options are mandatory for short options too.\n\
"), stdout);
fputs (_("\
-A, --auto-reference output automatically generated references\n\
- -G, --traditional behave more like System V `ptx'\n\
+ -G, --traditional behave more like System V 'ptx'\n\
-F, --flag-truncation=STRING use STRING for flagging line truncations\n\
"), stdout);
fputs (_("\
- -M, --macro-name=STRING macro name to use instead of `xx'\n\
+ -M, --macro-name=STRING macro name to use instead of 'xx'\n\
-O, --format=roff generate output as roff directives\n\
-R, --right-side-refs put references at right, not counted in -w\n\
-S, --sentence-regexp=REGEXP for end of lines or end of sentences\n\
@@ -1854,7 +1854,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\
fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
-With no FILE or if FILE is -, read Standard Input. `-F /' by default.\n\
+With no FILE or if FILE is -, read Standard Input. '-F /' by default.\n\
"), stdout);
emit_ancillary_info ();
}