summaryrefslogtreecommitdiff
path: root/src/pr.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/pr.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/pr.c')
-rw-r--r--src/pr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pr.c b/src/pr.c
index cb7e1e39e..deb46dec3 100644
--- a/src/pr.c
+++ b/src/pr.c
@@ -51,9 +51,9 @@
utilities, e.g. sort or cut. - Same as SunOS does.
- With multicolumn output
two conflicting POSIX requirements exist:
- First `default n-separator is TAB', second `output text columns shall
+ First 'default n-separator is TAB', second `output text columns shall
be of equal width'. Moreover POSIX specifies the number+separator a
- part of the column, together with '-COLUMN' and `-a -COLUMN'.
+ part of the column, together with '-COLUMN' and '-a -COLUMN'.
(With -m output the number shall occupy each line only once. Exactly
the same situation as single column output exists.)
GNU pr gives priority to the 2nd requirement and observes POSIX
@@ -125,7 +125,7 @@
two
three
four
- will be printed with `-a -3' as
+ will be printed with '-a -3' as
one two three
four
@@ -899,7 +899,7 @@ main (int argc, char **argv)
switch (c)
{
case 1: /* Non-option argument. */
- /* long option --page dominates old `+FIRST_PAGE ...'. */
+ /* long option --page dominates old '+FIRST_PAGE ...'. */
if (! (first_page_number == 0
&& *optarg == '+' && first_last_page (-2, '+', optarg + 1)))
file_names[n_files++] = optarg;
@@ -2048,7 +2048,7 @@ add_line_number (COLUMN *p)
if (columns > 1)
{
/* Tabification is assumed for multiple columns, also for n-separators,
- but `default n-separator = TAB' hasn't been given priority over
+ but 'default n-separator = TAB' hasn't been given priority over
equal column_width also specified by POSIX. */
if (number_separator == '\t')
{