diff options
author | Jim Meyering <meyering@redhat.com> | 2012-01-08 15:08:30 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-01-09 21:50:08 +0100 |
commit | a517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4 (patch) | |
tree | 20ad6e7d6aa0baed16f884fca2bccff4dda4983d /src/rm.c | |
parent | 9af0dced5a2eb167ec7b9dfe3f358f214e45d41a (diff) | |
download | coreutils-a517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4.tar.gz coreutils-a517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4.tar.bz2 coreutils-a517386f1bf8c64ee7617cc2c9d0a16a1d85c8c4.zip |
maint: src/*.c: change remaining quotes (without embedded spaces)
Run this (twice):
git grep -E -l '`[^ ]+'\' src/*.c \
|xargs perl -pi -e 's/`([^ ]+'\'')/'\''$1/'
Diffstat (limited to 'src/rm.c')
-rw-r--r-- | src/rm.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* `rm' file deletion utility for GNU. +/* 'rm' file deletion utility for GNU. Copyright (C) 1988, 1990-1991, 1994-2012 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify @@ -34,7 +34,7 @@ #include "yesno.h" #include "priv-set.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 "rm" #define AUTHORS \ @@ -98,7 +98,7 @@ static enum interactive_type const interactive_types[] = ARGMATCH_VERIFY (interactive_args, interactive_types); /* Advise the user about invalid usages like "rm -foo" if the file - "-foo" exists, assuming ARGC and ARGV are as with `main'. */ + "-foo" exists, assuming ARGC and ARGV are as with 'main'. */ static void diagnose_leading_hyphen (int argc, char **argv) @@ -194,7 +194,7 @@ rm_option_init (struct rm_options *x) x->stdin_tty = isatty (STDIN_FILENO); x->verbose = false; - /* Since this program exits immediately after calling `rm', rm need not + /* Since this program exits immediately after calling 'rm', rm need not expend unnecessary effort to preserve the initial working directory. */ x->require_restore_cwd = false; } |