[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Use standard macro for bug report address
From: |
John Darrington |
Subject: |
[PATCH] Use standard macro for bug report address |
Date: |
Wed, 15 Jan 2020 09:15:50 +0100 |
---
ChangeLog | 4 ++++
gnulib | 2 +-
src/pkl.c | 4 ++--
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a418c5f3..4c19adaa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2020-01-18 John Darrington <address@hidden>
+
+ * src/pkl.c: Use std macro for bug report address.
+
2020-01-14 Jose E. Marchesi <address@hidden>
* src/pkl-anal.c (pkl_anal2_ps_offset): Remove unused local
diff --git a/gnulib b/gnulib
index 611869be..9e5f20f4 160000
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit 611869be9f1083e53305446d90a2909fc89914ef
+Subproject commit 9e5f20f4cf5ad2d4ae254761cfa4e47ff0ed4698
diff --git a/src/pkl.c b/src/pkl.c
index 7ed0d9a1..bf12184b 100644
--- a/src/pkl.c
+++ b/src/pkl.c
@@ -742,8 +742,8 @@ pkl_ice (pkl_ast ast,
pk_printf ("Important information has been dumped in %s.\n",
tmpfile);
pk_puts ("Please attach it to a bug report and send it to");
- pk_term_hyperlink ("mailto:address@hidden", NULL);
- pk_puts (" address@hidden");
+ pk_term_hyperlink ("mailto:" PACKAGE_BUGREPORT, NULL);
+ pk_puts (" " PACKAGE_BUGREPORT);
}
pk_term_end_hyperlink ();
pk_puts (".\n");
--
2.11.0
- [PATCH] Use standard macro for bug report address,
John Darrington <=