]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Update AUTHORS definition to be a comma-separated list of strings and/or update
authorJim Meyering <jim@meyering.net>
Thu, 18 Sep 2003 18:22:23 +0000 (18:22 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 18 Sep 2003 18:22:23 +0000 (18:22 +0000)
the call to parse_long_options so that `AUTHORS, NULL' are the last parameters.

58 files changed:
src/basename.c
src/cat.c
src/chroot.c
src/cksum.c
src/comm.c
src/cp.c
src/csplit.c
src/cut.c
src/dd.c
src/df.c
src/dirname.c
src/du.c
src/echo.c
src/env.c
src/expr.c
src/factor.c
src/head.c
src/hostid.c
src/hostname.c
src/id.c
src/link.c
src/ln.c
src/logname.c
src/ls.c
src/md5sum.c
src/mv.c
src/nice.c
src/nl.c
src/nohup.c
src/paste.c
src/pathchk.c
src/pinky.c
src/pr.c
src/printenv.c
src/printf.c
src/pwd.c
src/rm.c
src/setuidgid.c
src/sleep.c
src/sort.c
src/split.c
src/stty.c
src/sum.c
src/sync.c
src/tac.c
src/tail.c
src/tee.c
src/test.c
src/touch.c
src/tsort.c
src/uniq.c
src/unlink.c
src/uptime.c
src/users.c
src/wc.c
src/who.c
src/whoami.c
src/yes.c

index 805ee25caa24f0aea6d5deeb74ed0c2d9d7782e1..9ba33c35703a2f457265e83b089f4adbe8f1cf37 100644 (file)
@@ -100,7 +100,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
   if (argc > 1 && STREQ (argv[1], "--"))
index cf0a90016a4e3dc8f393b35785edbd21c97c10d0..116ad5404fb39feb9e75e7b428dde48eac6526fa 100644 (file)
--- a/src/cat.c
+++ b/src/cat.c
@@ -38,7 +38,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "cat"
 
-#define AUTHORS N_ ("Torbjorn Granlund and Richard M. Stallman")
+#define AUTHORS "Torbjorn Granlund", "Richard M. Stallman"
 
 /* Undefine, to avoid warning about redefinition on some systems.  */
 #undef max
index 78836c8a5a6ff145324014920d7722ff759ac56e..d808908b4e761333e1e9aa6ae55e1675f6b8baed 100644 (file)
@@ -72,7 +72,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
   if (argc <= 1)
     {
       error (0, 0, _("too few arguments"));
index 4d0fec187d8b984c5a1048d167d1ed2285894262..c991181d5a660b3c50bb17a21810c38fd448f431 100644 (file)
@@ -309,7 +309,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   have_read_stdin = 0;
 
index efa5ee4313dbc1e86d2519a87e9b34d0830e704a..0541d9710a7d929855b36a3f6d07bbc226b67b7d 100644 (file)
@@ -31,7 +31,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "comm"
 
-#define AUTHORS N_ ("Richard Stallman and David MacKenzie")
+#define AUTHORS "Richard Stallman", "David MacKenzie"
 
 /* Undefine, to avoid warning about redefinition on some systems.  */
 #undef min
index a0e59110c9cf514620d80709e4ff7a8120377975..db234049d509a011746c325aea685ac182a5d9c9 100644 (file)
--- a/src/cp.c
+++ b/src/cp.c
@@ -47,7 +47,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "cp"
 
-#define AUTHORS N_ ("Torbjorn Granlund, David MacKenzie, and Jim Meyering")
+#define AUTHORS "Torbjorn Granlund", "David MacKenzie", "Jim Meyering"
 
 #ifndef _POSIX_VERSION
 uid_t geteuid ();
index e6bdb558c5a37be2a5aac21e47caa1d17cdb0a14..7ea8fc4fd5c9143198ad1b83e5d275f65ba890e1 100644 (file)
@@ -37,7 +37,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "csplit"
 
-#define AUTHORS N_ ("Stuart Kemp and David MacKenzie")
+#define AUTHORS "Stuart Kemp", "David MacKenzie"
 
 #ifndef TRUE
 # define FALSE 0
index d1af11285303b3a049d04a3df24d702fb0a467b4..f24160928fcc5f36b661acf9b70c0060100062d0 100644 (file)
--- a/src/cut.c
+++ b/src/cut.c
@@ -39,7 +39,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "cut"
 
-#define AUTHORS N_ ("David Ihnat, David MacKenzie, and Jim Meyering")
+#define AUTHORS "David Ihnat", "David MacKenzie", "Jim Meyering"
 
 #define FATAL_ERROR(Message)                                           \
   do                                                                   \
index 187764ca9e65a2a73076845e80309509e5aff929..5300d3b4a899c905a86f2b444649d6d9218aa633 100644 (file)
--- a/src/dd.c
+++ b/src/dd.c
@@ -39,7 +39,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "dd"
 
-#define AUTHORS N_ ("Paul Rubin, David MacKenzie, and Stuart Kemp")
+#define AUTHORS "Paul Rubin", "David MacKenzie", "Stuart Kemp"
 
 #ifndef SIGINFO
 # define SIGINFO SIGUSR1
@@ -1161,7 +1161,7 @@ main (int argc, char **argv)
   atexit (close_stdout_wrapper);
 
   parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   /* Don't close stdout on exit from here on.  */
   closeout_func = NULL;
index af8c2bf1d6a6164a79c773e5d521d841e7d5bcf0..85097a25eb4db9221b6546053fabe4b03699e44e 100644 (file)
--- a/src/df.c
+++ b/src/df.c
@@ -42,7 +42,7 @@
 #define PROGRAM_NAME "df"
 
 #define AUTHORS \
-  N_ ("Torbjorn Granlund, David MacKenzie, and Paul Eggert")
+  "Torbjorn Granlund", "David MacKenzie", "Paul Eggert"
 
 /* Name this program was run with. */
 char *program_name;
index ec4e353f791e0d725441d0e82a879dc839b7b5ca..9eee8221bed9c1ba7c8aef9998003963c142d9c6 100644 (file)
@@ -29,7 +29,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "dirname"
 
-#define AUTHORS N_ ("David MacKenzie and Jim Meyering")
+#define AUTHORS "David MacKenzie", "Jim Meyering"
 
 /* The name this program was run with. */
 char *program_name;
@@ -75,7 +75,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
   if (argc > 1 && STREQ (argv[1], "--"))
index 890abeda0475b968486646ba8ca707756c7abd72..5d039adb7490ce48ae9769afc8cf711c0c0f7854 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -46,7 +46,7 @@
 #define PROGRAM_NAME "du"
 
 #define AUTHORS \
-  N_ ("Torbjorn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering")
+  "Torbjorn Granlund", "David MacKenzie", "Paul Eggert", "Jim Meyering"
 
 /* Initial size of the hash table.  */
 #define INITIAL_TABLE_SIZE 103
index e1629a638c98c8815fcffe935d68df46e649f609..aaeb0eee89dfcd7d8bcbffcd14542051151b9a4a 100644 (file)
@@ -127,7 +127,7 @@ main (int argc, char **argv)
   /* Don't recognize --help or --version if POSIXLY_CORRECT is set.  */
   if (getenv ("POSIXLY_CORRECT") == NULL)
     parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
   else
     allow_options = 0;
 
index 440ec8fb3d235dfd30819a605bc3b7bb212642c4..0502220ef10a7f3c6d1a3bbc7fb2521c26c0117a 100644 (file)
--- a/src/env.c
+++ b/src/env.c
@@ -89,7 +89,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "env"
 
-#define AUTHORS N_ ("Richard Mlynarik and David MacKenzie")
+#define AUTHORS "Richard Mlynarik", "David MacKenzie"
 
 int putenv ();
 
index b6132755a3075c4388f67c4c13795a8b4bb60ab8..8b75621625e5994c5918eacd0b8d366720b66c87 100644 (file)
@@ -188,7 +188,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
   if (argc > 1 && STREQ (argv[1], "--"))
index f27c1c08db3681b33790d8c75b87165a151ecbed..03be106090c9a0d55e90e6d8bf9237098c463215 100644 (file)
@@ -202,7 +202,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
   if (argc > 1 && STREQ (argv[1], "--"))
index cf28bbe940160869d754b443f756b330fde7912f..ead59aec4879fe62ac891ac4133d2f8019b36cb4 100644 (file)
@@ -44,7 +44,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "head"
 
-#define AUTHORS N_("David MacKenzie and Jim Meyering")
+#define AUTHORS "David MacKenzie", "Jim Meyering"
 
 /* Number of lines/chars/blocks to head. */
 #define DEFAULT_NUMBER 10
index 3119aadff8023dc5602353b57c93ab8fe39f4689..1f89fda708f66c5683bb5be7ae5dc3b89d3c485c 100644 (file)
@@ -69,7 +69,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   if (argc > 1)
     {
index 8f97a7affaad59ff9b4fe696ceb55e6a06fc9a48..5aedf29e7be22d7f2321a35e373f17e7ee55c742 100644 (file)
@@ -91,7 +91,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
 #ifdef HAVE_SETHOSTNAME
   if (argc == 2)
index 2880928d6f946344bbfc057c3a76acf896e0e6e0..9cd426a2ecceccb032532777b3dba62ef828d907 100644 (file)
--- a/src/id.c
+++ b/src/id.c
@@ -32,7 +32,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "id"
 
-#define AUTHORS N_ ("Arnold Robbins and David MacKenzie")
+#define AUTHORS "Arnold Robbins", "David MacKenzie"
 
 #ifndef _POSIX_VERSION
 struct passwd *getpwuid ();
index 20cf42b5322606b78eccdba4c7d6bc0703100265..d0ae1ed4d9c280ab0922db85e8e52f6e990e7528 100644 (file)
@@ -73,7 +73,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
index 35a879033ac70f95a22125d70b88d8308abfa138..9334e49d42860988a022b3780b3d30a37c77fe85 100644 (file)
--- a/src/ln.c
+++ b/src/ln.c
@@ -32,7 +32,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "ln"
 
-#define AUTHORS N_ ("Mike Parker and David MacKenzie")
+#define AUTHORS "Mike Parker", "David MacKenzie"
 
 #ifndef ENABLE_HARD_LINK_TO_SYMLINK_WARNING
 # define ENABLE_HARD_LINK_TO_SYMLINK_WARNING 0
index 4ff86392422cefdc194c30d8016ed1f15376962c..a10de9f7a43d462ad457d2f2a39dbcf6ca4e68fc 100644 (file)
@@ -72,7 +72,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
     {
index 1570ad0941474a94a264070d898245bb833247ae..b3c1c564b511e9471346c8a6bd778eb57f95de34 100644 (file)
--- a/src/ls.c
+++ b/src/ls.c
@@ -119,7 +119,7 @@ int wcwidth ();
                      : (ls_mode == LS_MULTI_COL \
                         ? "dir" : "vdir"))
 
-#define AUTHORS N_ ("Richard Stallman and David MacKenzie")
+#define AUTHORS "Richard Stallman", "David MacKenzie"
 
 #define obstack_chunk_alloc malloc
 #define obstack_chunk_free free
index c1685a509b3e1cafb5ec9a0a9cee94387e67cb9e..570dde9f1c44cd4290ca30957a3b4abc348c7684 100644 (file)
@@ -34,7 +34,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME (algorithm == ALG_MD5 ? "md5sum" : "shasum")
 
-#define AUTHORS N_ ("Ulrich Drepper and Scott Miller")
+#define AUTHORS "Ulrich Drepper", "Scott Miller"
 
 /* Most systems do not distinguish between external and internal
    text representations.  */
index 9052a12e45b3d7b233c433e9438200ffac05b78d..e48161c843e1f0b67299c49afe442cf18ba8519e 100644 (file)
--- a/src/mv.c
+++ b/src/mv.c
@@ -37,7 +37,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "mv"
 
-#define AUTHORS N_ ("Mike Parker, David MacKenzie, and Jim Meyering")
+#define AUTHORS "Mike Parker", "David MacKenzie", "Jim Meyering"
 
 /* Initial number of entries in each hash table entry's table of inodes.  */
 #define INITIAL_HASH_MODULE 100
index 487fb5510d0fa059aa5b0df04101e0663b47f5b2..003fa1f8eb74efec81cfee998922c5313563268f 100644 (file)
@@ -99,7 +99,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   for (i = 1; i < argc; /* empty */)
     {
index befbc0e4d1dbab0011222f893ed3d56b3ad7190b..7fa88120c13faa845c268c11932fe78ece879e1d 100644 (file)
--- a/src/nl.c
+++ b/src/nl.c
@@ -36,7 +36,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "nl"
 
-#define AUTHORS N_ ("Scott Bartram and David MacKenzie")
+#define AUTHORS "Scott Bartram", "David MacKenzie"
 
 #ifndef TRUE
 # define TRUE   1
index 9a7221f8c07a22a4c6a4d12718b51cc1755a5230..a8772f84d9a4d9d08ac684ccf3627192f4294de3 100644 (file)
@@ -86,7 +86,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   /* The above handles --help and --version.
      Now, handle `--'.  */
index a417093811546d006f95533513cfcb8120d69528..451c2b0690c8c2868f446986b6f3af88e01c7a0a 100644 (file)
@@ -46,7 +46,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "paste"
 
-#define AUTHORS N_ ("David M. Ihnat and David MacKenzie")
+#define AUTHORS "David M. Ihnat", "David MacKenzie"
 
 /* Indicates that no delimiter should be added in the current position. */
 #define EMPTY_DELIM '\0'
index f296272247a6b7212a737a2d3a5c9ee953b92305..17638de66cca11fa7e4b87d1537535a5d1dcb83a 100644 (file)
@@ -50,7 +50,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "pathchk"
 
-#define AUTHORS N_ ("David MacKenzie and Jim Meyering")
+#define AUTHORS "David MacKenzie", "Jim Meyering"
 
 #define NEED_PATHCONF_WRAPPER 0
 #if HAVE_PATHCONF
@@ -166,7 +166,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((optc = getopt_long (argc, argv, "p", longopts, NULL)) != -1)
     {
index 77aad7e5faafd6a228156500df2950eb6d1656ec..37ad56dfc5b0c8d114ca4b50b3355272563b2c6f 100644 (file)
@@ -31,7 +31,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "pinky"
 
-#define AUTHORS N_ ("Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi")
+#define AUTHORS "Joseph Arceneaux", "David MacKenzie", "Kaveh Ghazi"
 
 #ifndef MAXHOSTNAMELEN
 # define MAXHOSTNAMELEN 64
index e6883bbbe85b5916e3c5f69895a3ea77c64d5991..f8184883b6be7e88e43da0b83a18dd523aacd198 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "pr"
 
-#define AUTHORS N_ ("Pete TerMaat and Roland Huebner")
+#define AUTHORS "Pete TerMaat", "Roland Huebner"
 
 #ifndef TRUE
 # define TRUE  1
index 0ad821b08df24024f154e62d2c4e10a2c6f64e41..033e98e1dcace813ec5c3bdb61b5d2cce80efa81 100644 (file)
@@ -40,7 +40,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "printenv"
 
-#define AUTHORS N_ ("David MacKenzie and Richard Mlynarik")
+#define AUTHORS "David MacKenzie", "Richard Mlynarik"
 
 /* The name this program was run with. */
 char *program_name;
@@ -94,7 +94,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
     {
index 97b7d97621343f976fb54f0402b0481e7d976d39..b5d1cb511b3bf346be4791b14e8a746f1ec919f7 100644 (file)
@@ -566,7 +566,7 @@ main (int argc, char **argv)
   posixly_correct = (getenv ("POSIXLY_CORRECT") != NULL);
   if (!posixly_correct)
     parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                       AUTHORS, usage);
+                       usage, AUTHORS, NULL);
 
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
index c4be503d886cf0fde3e411d9fe82bd8cba801422..17a80a69e6a8f259785524c74bcf12c6a0486d63 100644 (file)
--- a/src/pwd.c
+++ b/src/pwd.c
@@ -68,7 +68,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   if (1 < argc)
     error (0, 0, _("ignoring non-option arguments"));
index a2be56d451ba0b31e873438ac4042d9d865a7519..27b0cb82fda56004f9d834227279f0ad16f90ce7 100644 (file)
--- a/src/rm.c
+++ b/src/rm.c
@@ -58,7 +58,7 @@
 #define PROGRAM_NAME "rm"
 
 #define AUTHORS \
-  N_ ("Paul Rubin, David MacKenzie, Richard Stallman, and Jim Meyering")
+  "Paul Rubin", "David MacKenzie", "Richard Stallman", "Jim Meyering"
 
 /* Name this program was run with.  */
 char *program_name;
index 9a4354153cc6ce5a724cbc0d214064f2dfbc67da..e19acf3cf25e333fffdaf24fd837c4e02659fdae 100644 (file)
@@ -83,7 +83,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
index 5a4bd3d57319c596ac32f9e0195467be10b28469..9e986930cfe4ff0417840419f1e165912a7919cf 100644 (file)
@@ -30,7 +30,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "sleep"
 
-#define AUTHORS N_ ("Jim Meyering and Paul Eggert")
+#define AUTHORS "Jim Meyering", "Paul Eggert"
 
 /* The name by which this program was run. */
 char *program_name;
@@ -120,7 +120,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
     {
index 1b4e4a4008ae8ba42b2558c660e88efccc1005ba..d7eaa1685c67e9b567d77f7a7c41e5000d9b8237 100644 (file)
@@ -51,7 +51,7 @@ struct rlimit { size_t rlim_cur; };
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "sort"
 
-#define AUTHORS N_ ("Mike Haertel and Paul Eggert")
+#define AUTHORS "Mike Haertel", "Paul Eggert"
 
 #if HAVE_LANGINFO_CODESET
 # include <langinfo.h>
index 08617c3f8f16efba2ebeac28ed2e961e35bf1ad0..311b08e5db13db082dfb726257b8213ba88e54ca 100644 (file)
@@ -40,7 +40,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "split"
 
-#define AUTHORS N_ ("Torbjorn Granlund and Richard M. Stallman")
+#define AUTHORS "Torbjorn Granlund", "Richard M. Stallman"
 
 #define DEFAULT_SUFFIX_LENGTH 2
 
index 71e0eb3fa22e8a323370108df5b4ba467a4c7f61..d47ab2f27884dc1a240f82e1380e8d76dd58a489 100644 (file)
@@ -750,7 +750,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   output_type = changed;
   verbose_output = 0;
index 9abd4f3f0ba75d9348c39ff170b718445ea9e60c..20a496905fdbe46be43be9b5a7af4550006244fc 100644 (file)
--- a/src/sum.c
+++ b/src/sum.c
@@ -32,7 +32,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "sum"
 
-#define AUTHORS N_ ("Kayvan Aghaiepour and David MacKenzie")
+#define AUTHORS "Kayvan Aghaiepour", "David MacKenzie"
 
 /* The name this program was run with. */
 char *program_name;
index 1481c4968f8f358b53686f6143bbdf08e2e14ec5..13e53f670ef18eba7bfbc7e96041c08bc013ab70 100644 (file)
@@ -65,7 +65,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   if (1 < argc)
     error (0, 0, _("ignoring all arguments"));
index 4567e8705d3abd6649ff5de86e16a2be99770d5c..77611d3f9c4765fc19fc3a22212ec4de117110f2 100644 (file)
--- a/src/tac.c
+++ b/src/tac.c
@@ -50,7 +50,7 @@ tac -r -s '.\|
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "tac"
 
-#define AUTHORS N_ ("Jay Lepreau and David MacKenzie")
+#define AUTHORS "Jay Lepreau", "David MacKenzie"
 
 #if defined __MSDOS__ || defined _WIN32
 /* Define this to non-zero on systems for which the regular mechanism
index 66d848101f006a7e93fafd08330a5fc2fb10ad8c..67184a37cf7abadf75aa24cd3bb2e85b9104b930 100644 (file)
@@ -46,7 +46,7 @@
 #define PROGRAM_NAME "tail"
 
 #define AUTHORS \
-  N_ ("Paul Rubin, David MacKenzie, Ian Lance Taylor, and Jim Meyering")
+  "Paul Rubin", "David MacKenzie", "Ian Lance Taylor", "Jim Meyering"
 
 #ifndef ENOSYS
   /* Some systems don't have ENOSYS -- this should be a big enough
index 4ec399b8522cf84c7cf8b15f846c59c576f15669..ccd7873f2d22819f5ac8c9c8be5b35672f57202c 100644 (file)
--- a/src/tee.c
+++ b/src/tee.c
@@ -29,7 +29,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "tee"
 
-#define AUTHORS N_ ("Mike Parker, Richard M. Stallman, and David MacKenzie")
+#define AUTHORS "Mike Parker", "Richard M. Stallman", "David MacKenzie"
 
 static int tee (int nfiles, const char **files);
 
index fa00a396b4fdb86623cd022602bcc3efbc95e3e9..24d347e641c8a982603220578f40ed16e7625960 100644 (file)
@@ -1058,7 +1058,7 @@ INTEGER may also be -l STRING, which evaluates to the length of STRING.\n\
 # define main test_command
 #endif
 
-#define AUTHORS N_ ("Kevin Braunsdorf and Matthew Bradburn")
+#define AUTHORS "Kevin Braunsdorf", "Matthew Bradburn"
 
 /*
  * [:
@@ -1101,7 +1101,7 @@ main (int margc, char **margv)
       if (margc < 2 || strcmp (margv[margc - 1], "]") != 0)
        {
          parse_long_options (margc, margv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                             AUTHORS, usage);
+                             usage, AUTHORS, NULL);
          test_syntax_error (_("missing `]'\n"), NULL);
        }
 
index 288e6d1615b7f011182cd224f731d583bc287445..c6e8d2be610364497edf5d30cdb438bfa862f966 100644 (file)
@@ -37,7 +37,7 @@
 #define PROGRAM_NAME "touch"
 
 #define AUTHORS \
-N_ ("Paul Rubin, Arnold Robbins, Jim Kingdon, David MacKenzie, and Randy Smith")
+"Paul Rubin", "Arnold Robbins", "Jim Kingdon", "David MacKenzie", "Randy Smith"
 
 #ifndef STDC_HEADERS
 time_t time ();
index a66d37ba42b7d421fc996fd9181eed961342b018..c6b7855a45b66d9abd712ded26a7f916271fb69d 100644 (file)
@@ -560,7 +560,7 @@ main (int argc, char **argv)
   exit_status = 0;
 
   parse_long_options (argc, argv, PROGRAM_NAME, PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((opt = getopt_long (argc, argv, "", long_options, NULL)) != -1)
     switch (opt)
index 9555d6c86daf5731def28907a81692f01586edf9..199cc566f0e2df9145382298188f2323cacb8aec 100644 (file)
@@ -36,7 +36,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "uniq"
 
-#define AUTHORS N_ ("Richard Stallman and David MacKenzie")
+#define AUTHORS "Richard Stallman", "David MacKenzie"
 
 #define SWAP_LINES(A, B)                       \
   do                                           \
index f5c3c24d1c9f91b4883ae26ec0073c9eba493f58..6d3257e366425bcad8bf43868cd0d4a828c116bd 100644 (file)
@@ -74,7 +74,7 @@ main (int argc, char **argv)
   /* Don't recognize --help or --version if POSIXLY_CORRECT is set.  */
   if (getenv ("POSIXLY_CORRECT") == NULL)
     parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                       AUTHORS, usage);
+                       usage, AUTHORS, NULL);
 
   /* The above handles --help and --version.
      Since there is no other invocation of getopt, handle `--' here.  */
index c987a2a32cea96f5d03aab3f08a98bf0e9fabf77..371e60b47de5ccbf926258214c191d0476858344 100644 (file)
@@ -35,7 +35,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "uptime"
 
-#define AUTHORS N_ ("Joseph Arceneaux, David MacKenzie, and Kaveh Ghazi")
+#define AUTHORS "Joseph Arceneaux", "David MacKenzie", "Kaveh Ghazi"
 
 int getloadavg ();
 
@@ -216,7 +216,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((optc = getopt_long (argc, argv, "", longopts, &longind)) != -1)
     {
index 6ef4396c0176f2d7d543da798df7f50666450e91..eb2bd56e15dce84517b3de4273f42f581df196c8 100644 (file)
@@ -31,7 +31,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "users"
 
-#define AUTHORS N_ ("Joseph Arceneaux and David MacKenzie")
+#define AUTHORS "Joseph Arceneaux", "David MacKenzie"
 
 /* The name this program was run with. */
 char *program_name;
@@ -141,7 +141,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((optc = getopt_long (argc, argv, "", longopts, &longind)) != -1)
     {
index e7a693594029e67a74be8ed631f32191f9dd0186..061b4650044657f59d5e71a1af67bb5d4628c24a 100644 (file)
--- a/src/wc.c
+++ b/src/wc.c
@@ -71,7 +71,7 @@ extern int wcwidth ();
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "wc"
 
-#define AUTHORS N_ ("Paul Rubin and David MacKenzie")
+#define AUTHORS "Paul Rubin", "David MacKenzie"
 
 /* Size of atomic reads. */
 #define BUFFER_SIZE (16 * 1024)
index 9c6e71435de66eadd5c0e47789577772011506cf..fc46b6fe764784ad839569dfeb4c7f3e914e86c6 100644 (file)
--- a/src/who.c
+++ b/src/who.c
@@ -37,7 +37,7 @@
 /* The official name of this program (e.g., no `g' prefix).  */
 #define PROGRAM_NAME "who"
 
-#define AUTHORS N_ ("Joseph Arceneaux, David MacKenzie, and Michael Stone")
+#define AUTHORS "Joseph Arceneaux", "David MacKenzie", "Michael Stone"
 
 #ifndef MAXHOSTNAMELEN
 # define MAXHOSTNAMELEN 64
index 019379e87aac83de5e0ae8b8337f8682ed320452..c113ba35dda69d1432c5f7f14757bb1494e39529 100644 (file)
@@ -77,7 +77,7 @@ main (int argc, char **argv)
   atexit (close_stdout);
 
   parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                     AUTHORS, usage);
+                     usage, AUTHORS, NULL);
 
   while ((c = getopt_long (argc, argv, "", long_options, NULL)) != -1)
     {
index f2e37ce8e9f0d3d75b14f028149ce43db7662fe6..332c3e29fa868b7274d83648f99f03d35fc81ce3 100644 (file)
--- a/src/yes.c
+++ b/src/yes.c
@@ -77,7 +77,7 @@ main (int argc, char **argv)
   /* Don't recognize --help or --version if POSIXLY_CORRECT is set.  */
   if (getenv ("POSIXLY_CORRECT") == NULL)
     parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION,
-                       AUTHORS, usage);
+                       usage, AUTHORS, NULL);
 
   if (argc == 1)
     {