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/who.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/who.c') diff --git a/src/who.c b/src/who.c index 4d024cea4..6a39331cf 100644 --- a/src/who.c +++ b/src/who.c @@ -40,7 +40,10 @@ /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "who" -#define AUTHORS "Joseph Arceneaux", "David MacKenzie", "Michael Stone" +#define AUTHORS \ + proper_name ("Joseph Arceneaux"), \ + proper_name ("David MacKenzie"), \ + proper_name ("Michael Stone") #ifndef MAXHOSTNAMELEN # define MAXHOSTNAMELEN 64 -- cgit v1.2.3-54-g00ecf