From ff6feef76db1f475195ae50c13afc89ed0a85487 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 21 Dec 2003 23:58:04 +0000 Subject: [PATCH] Factored out the bug report mailing address. --- configure.ac | 2 +- src/cmdline.c | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index b2406a6f..b55a1465 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. dnl Initialize. AC_PREREQ(2.58) -AC_INIT(pspp, 0.3.1) +AC_INIT(pspp, 0.3.1,bug-gnu-pspp@gnu.org) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE diff --git a/src/cmdline.c b/src/cmdline.c index cd29b990..a1a5281c 100644 --- a/src/cmdline.c +++ b/src/cmdline.c @@ -242,8 +242,7 @@ N_("PSPP, a program for statistical analysis of sample data.\n" "\n"); /* Message that describes PSPP command-line syntax, continued. */ -static const char post_syntax_message[] = -N_("\nReport bugs to .\n"); +static const char post_syntax_message[] = N_("\nReport bugs to <%s>.\n"); /* Writes a syntax description to stdout and terminates. */ static void @@ -251,7 +250,7 @@ usage (void) { printf (gettext (pre_syntax_message), pgmname); outp_list_classes (); - printf (gettext (post_syntax_message)); + printf (gettext (post_syntax_message),PACKAGE_BUGREPORT); err_hcf (1); } -- 2.30.2