summaryrefslogtreecommitdiff
path: root/src/sort.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-01-08 21:03:22 +0100
committerJim Meyering <meyering@redhat.com>2012-01-09 21:51:59 +0100
commit3ba8b044267a5f7cfa8a7b0d7f19dab3f21431da (patch)
tree576e37b75cd77b289313b23676b6bebc08c1e23b /src/sort.c
parenta517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4 (diff)
downloadcoreutils-3ba8b044267a5f7cfa8a7b0d7f19dab3f21431da.tar.xz
maint: src/*.[ch]: convert more `...' to '...'
Run this (twice): git grep -E -l '`.+'\' src/*.[ch] \ |xargs perl -pi -e 's/`(.+?'\'')/'\''$1/'
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sort.c b/src/sort.c
index 528b63a82..f38ded9c2 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -4327,7 +4327,7 @@ main (int argc, char **argv)
N_("invalid number at field start"));
if (! key->sword--)
{
- /* Provoke with `sort -k0' */
+ /* Provoke with 'sort -k0' */
badfieldspec (optarg, N_("field number is zero"));
}
if (*s == '.')
@@ -4336,7 +4336,7 @@ main (int argc, char **argv)
N_("invalid number after '.'"));
if (! key->schar--)
{
- /* Provoke with `sort -k1.0' */
+ /* Provoke with 'sort -k1.0' */
badfieldspec (optarg, N_("character offset is zero"));
}
}
@@ -4355,7 +4355,7 @@ main (int argc, char **argv)
N_("invalid number after ','"));
if (! key->eword--)
{
- /* Provoke with `sort -k1,0' */
+ /* Provoke with 'sort -k1,0' */
badfieldspec (optarg, N_("field number is zero"));
}
if (*s == '.')
@@ -4409,7 +4409,7 @@ main (int argc, char **argv)
newtab = '\0';
else
{
- /* Provoke with `sort -txx'. Complain about
+ /* Provoke with 'sort -txx'. Complain about
"multi-character tab" instead of "multibyte tab", so
that the diagnostic's wording does not need to be
changed once multibyte characters are supported. */