summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-05-19 16:43:32 +0200
committerJim Meyering <meyering@redhat.com>2008-05-26 08:40:33 +0200
commitd8382a4d264faadd6d45d8b0d6beed0bcca2071d (patch)
tree5fa5cbc06bb60223fcd7aa282cab0dcfdcb53c54 /src/tail.c
parent74a106985afed8fbbd880baa9511d5c98b679064 (diff)
downloadcoreutils-d8382a4d264faadd6d45d8b0d6beed0bcca2071d.tar.xz
convert the rest to use proper_name -- manually
* src/base64.c (AUTHORS): Rename from AUTHOR, for consistency.
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/tail.c b/src/tail.c
index 0a63969b8..a2ea79aea 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -1,5 +1,5 @@
/* tail -- output the last part of file(s)
- Copyright (C) 1989, 90, 91, 1995-2006 Free Software Foundation, Inc.
+ Copyright (C) 1989, 90, 91, 1995-2006, 2008 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -49,7 +49,10 @@
#define PROGRAM_NAME "tail"
#define AUTHORS \
- "Paul Rubin", "David MacKenzie, Ian Lance Taylor", "Jim Meyering"
+ proper_name ("Paul Rubin"), \
+ proper_name ("David MacKenzie"), \
+ proper_name ("Ian Lance Taylor"), \
+ proper_name ("Jim Meyering")
/* Number of items to tail. */
#define DEFAULT_N_LINES 10