diff options
| author | Jim Meyering <meyering@redhat.com> | 2008-05-19 16:28:14 +0200 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2008-05-26 08:40:33 +0200 |
| commit | 74a106985afed8fbbd880baa9511d5c98b679064 (patch) | |
| tree | 711b6406523040123d15c683823e2479075cab84 /src/pathchk.c | |
| parent | convert 2-author programs to use proper_name (diff) | |
| download | coreutils-74a106985afed8fbbd880baa9511d5c98b679064.tar.gz coreutils-74a106985afed8fbbd880baa9511d5c98b679064.zip | |
convert 3-author programs to use proper_name
g grep -E -l 'define AUTHORS "[^,]+", "[^,]+", "[^,]+"$'|xargs perl -pi -e \
's/(define AUTHORS) ("[^,]+"), ("[^,]+"), ("[^,]+")$/$1 \\\n proper_name ($2), \\\n proper_name ($3), \\\n proper_name ($4)/'
Diffstat (limited to 'src/pathchk.c')
| -rw-r--r-- | src/pathchk.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pathchk.c b/src/pathchk.c index a711a091c..5bf297952 100644 --- a/src/pathchk.c +++ b/src/pathchk.c @@ -35,7 +35,10 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "pathchk" -#define AUTHORS "Paul Eggert", "David MacKenzie", "Jim Meyering" +#define AUTHORS \ + proper_name ("Paul Eggert"), \ + proper_name ("David MacKenzie"), \ + proper_name ("Jim Meyering") #ifndef _POSIX_PATH_MAX # define _POSIX_PATH_MAX 256 |
