diff options
| author | Jim Meyering <meyering@redhat.com> | 2008-05-19 16:26:25 +0200 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2008-05-26 08:40:33 +0200 |
| commit | be2abe31fd4d500a7a320e4e0598fb8bf78db352 (patch) | |
| tree | 29f881f89f8646b9148d705a6fa5f3ac35c7c819 /src/paste.c | |
| parent | convert single-author programs to use proper_name (diff) | |
| download | coreutils-be2abe31fd4d500a7a320e4e0598fb8bf78db352.tar.gz coreutils-be2abe31fd4d500a7a320e4e0598fb8bf78db352.zip | |
convert 2-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)/'
Diffstat (limited to 'src/paste.c')
| -rw-r--r-- | src/paste.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/paste.c b/src/paste.c index 20d695333..cdecd557e 100644 --- a/src/paste.c +++ b/src/paste.c @@ -47,7 +47,9 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "paste" -#define AUTHORS "David M. Ihnat", "David MacKenzie" +#define AUTHORS \ + proper_name ("David M. Ihnat"), \ + proper_name ("David MacKenzie") /* Indicates that no delimiter should be added in the current position. */ #define EMPTY_DELIM '\0' |
