1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 11:16:16 +02:00

maint: src/*.c: change remaining quotes (without embedded spaces)

Run this (twice):
  git grep -E -l '`[^ ]+'\' src/*.c \
    |xargs perl -pi -e 's/`([^ ]+'\'')/'\''$1/'
This commit is contained in:
Jim Meyering
2012-01-08 15:08:30 +01:00
parent 9af0dced5a
commit a517386f1b
98 changed files with 493 additions and 493 deletions

View File

@@ -27,7 +27,7 @@
#include "stdio--.h"
#include "xfreopen.h"
/* The official name of this program (e.g., no `g' prefix). */
/* The official name of this program (e.g., no 'g' prefix). */
#define PROGRAM_NAME "tee"
#define AUTHORS \
@@ -147,7 +147,7 @@ tee_files (int nfiles, const char **files)
descriptors = xnmalloc (nfiles + 1, sizeof *descriptors);
/* Move all the names `up' one in the argv array to make room for
/* Move all the names 'up' one in the argv array to make room for
the entry for standard output. This writes into argv[argc]. */
for (i = nfiles; i >= 1; i--)
files[i] = files[i - 1];