From 74a106985afed8fbbd880baa9511d5c98b679064 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 19 May 2008 16:28:14 +0200 Subject: 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)/' --- src/dd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/dd.c') diff --git a/src/dd.c b/src/dd.c index 0a7b15421..b1635b875 100644 --- a/src/dd.c +++ b/src/dd.c @@ -40,7 +40,10 @@ static void process_signals (void); /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "dd" -#define AUTHORS "Paul Rubin", "David MacKenzie", "Stuart Kemp" +#define AUTHORS \ + proper_name ("Paul Rubin"), \ + proper_name ("David MacKenzie"), \ + proper_name ("Stuart Kemp") /* Use SA_NOCLDSTOP as a proxy for whether the sigaction machinery is present. SA_NODEFER and SA_RESETHAND are XSI extensions. */ -- cgit v1.2.3-54-g00ecf