Update bug report address, and don't hardcode it in usage(). - enscript - GNU Enscript
 (HTM) git clone git://thinkerwim.org/enscript.git
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 90aff5f8d6c1d6aa69be62d9ae8a12c22ccd3db7
 (DIR) parent 288e95a13a053743ed97d2a122a637c10450fdf1
 (HTM) Author: Tim Retout <diocles@gnu.org>
       Date:   Tue,  1 Jan 2008 23:13:30 +0000
       
       Update bug report address, and don't hardcode it in usage().
       
       Diffstat:
         M ChangeLog                           |       3 +++
         M configure.in                        |       2 +-
         M src/ChangeLog                       |       3 +++
         M src/main.c                          |       2 +-
       
       4 files changed, 8 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/ChangeLog b/ChangeLog
       @@ -1,5 +1,8 @@
        2008-01-01  Tim Retout  <diocles@gnu.org>
        
       +        * configure.in (AC_INIT): Change bug report address to
       +        <bug-enscript@gnu.org>.
       +
                * ChangeLog: Run M-x change-log-redate. Add copyright notice at end.
        
        2007-12-29  Tim Retout  <diocles@gnu.org>
 (DIR) diff --git a/configure.in b/configure.in
       @@ -1,5 +1,5 @@
        dnl Process this file with autoconf to produce a configure script.
       -AC_INIT(enscript, 1.6.4, mtr@iki.fi)
       +AC_INIT(enscript, 1.6.4, bug-enscript@gnu.org)
        AC_CONFIG_SRCDIR([src/gsint.h])
        
        AC_PREREQ(2.57)
 (DIR) diff --git a/src/ChangeLog b/src/ChangeLog
       @@ -2,6 +2,9 @@
        
                * ChangeLog: Run M-x change-log-redate. Add copyright notice at end.
        
       +        * main.c (usage): Use PACKAGE_BUGREPORT instead of hardcoding the bug
       +        report address.
       +
                * main.c (main) <toc>: Remove an unnecessary fclose of the toc
                temporary file, which was breaking the --toc option.
        
 (DIR) diff --git a/src/main.c b/src/main.c
       @@ -2625,7 +2625,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\
          --word-wrap                wrap long lines from word boundaries\n\
        "));
        
       -  printf (_("\nReport bugs to mtr@iki.fi.\n"));
       +  printf (_("\nReport bugs to %s.\n"), PACKAGE_BUGREPORT);
        }