diff options
author | Takuji Tanaka <ttk@t-lab.opal.ne.jp> | 2021-02-06 04:32:21 +0000 |
---|---|---|
committer | Takuji Tanaka <ttk@t-lab.opal.ne.jp> | 2021-02-06 04:32:21 +0000 |
commit | d6f342dc662893a00603c2079e1e262f007ad075 (patch) | |
tree | 8a82adf3cff322982a46ec5a49c75fcd4a970f32 | |
parent | c5a502944c58146f2e50e51c5b0d8c215678789a (diff) |
dtl: tweak
git-svn-id: svn://tug.org/texlive/trunk@57633 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/dtl/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/dtl/dt2dv.c | 2 | ||||
-rw-r--r-- | Build/source/texk/dtl/dtl.h | 2 | ||||
-rw-r--r-- | Build/source/texk/dtl/dv2dt.c | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/Build/source/texk/dtl/ChangeLog b/Build/source/texk/dtl/ChangeLog index a94e955348a..16faf8a482d 100644 --- a/Build/source/texk/dtl/ChangeLog +++ b/Build/source/texk/dtl/ChangeLog @@ -1,3 +1,8 @@ +2021-02-06 TANAKA Takuji <ttk@t-lab.opal.ne.jp> + + * dv2dt.c, dt2dv.c, dtl.h: + Replace BUG_ADDRESS to PACKAGE_BUGREPORT. + 2021-01-30 TANAKA Takuji <ttk@t-lab.opal.ne.jp> * dv2dt.c, dt2dv.c, dtl.h, configure.ac: diff --git a/Build/source/texk/dtl/dt2dv.c b/Build/source/texk/dtl/dt2dv.c index 602a716f8c0..2e3be819144 100644 --- a/Build/source/texk/dtl/dt2dv.c +++ b/Build/source/texk/dtl/dt2dv.c @@ -447,7 +447,7 @@ give_help (VOID) fprintf (stderr, "\n"); } fprintf (stderr, "Messages, like this one, go to stderr.\n"); - fprintf (stderr, "\nEmail bug reports to %s.\n", BUG_ADDRESS); + fprintf (stderr, "\nEmail bug reports to %s.\n", PACKAGE_BUGREPORT); } /* give_help */ diff --git a/Build/source/texk/dtl/dtl.h b/Build/source/texk/dtl/dtl.h index 626016be1c9..f65518ce940 100644 --- a/Build/source/texk/dtl/dtl.h +++ b/Build/source/texk/dtl/dtl.h @@ -21,8 +21,6 @@ /* version of DTL programs */ #define VERSION "0.6.0" -#define BUG_ADDRESS "tex-k@tug.org" - /* Test for ANSI/ISO Standard C */ #if (defined(__cplusplus) || defined(__STDC__) || defined(c_plusplus)) #define STDC 1 diff --git a/Build/source/texk/dtl/dv2dt.c b/Build/source/texk/dtl/dv2dt.c index e59ee7d3426..6ec3ef05d7b 100644 --- a/Build/source/texk/dtl/dv2dt.c +++ b/Build/source/texk/dtl/dv2dt.c @@ -964,7 +964,7 @@ give_help (VOID) PRINT_PROGNAME; fprintf (stderr, " dvi_file dtl_file"); fprintf (stderr, "\n"); - fprintf (stderr, "\nEmail bug reports to %s.\n", BUG_ADDRESS); + fprintf (stderr, "\nEmail bug reports to %s.\n", PACKAGE_BUGREPORT); } /* end of "dv2dt.c" */ |