diff options
| author | Jim Meyering <meyering@redhat.com> | 2008-05-19 16:24:27 +0200 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2008-05-26 08:40:32 +0200 |
| commit | b69b4cca953a9a0a13edf026ea104d13dc956bd3 (patch) | |
| tree | c015ee1d335da9c4d97c544da8c2f5bf8eac28f0 /src/printf.c | |
| parent | use gnulib's proper_name_utf8 function, but *not* proper_name (diff) | |
| download | coreutils-b69b4cca953a9a0a13edf026ea104d13dc956bd3.tar.gz coreutils-b69b4cca953a9a0a13edf026ea104d13dc956bd3.zip | |
convert single-author programs to use proper_name
g grep -E -l 'define AUTHORS "[^,]+"$'|xargs perl -pi -e \
's/(define AUTHORS) ("[^,]+")$/$1 proper_name ($2)/'
Diffstat (limited to 'src/printf.c')
| -rw-r--r-- | src/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c index e2536c797..cd3e94a8a 100644 --- a/src/printf.c +++ b/src/printf.c @@ -60,7 +60,7 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "printf" -#define AUTHORS "David MacKenzie" +#define AUTHORS proper_name ("David MacKenzie") #define isodigit(c) ((c) >= '0' && (c) <= '7') #define hextobin(c) ((c) >= 'a' && (c) <= 'f' ? (c) - 'a' + 10 : \ |
