aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/cus-start.el2
-rw-r--r--lisp/mail/emacsbug.el5
-rw-r--r--src/ChangeLog5
-rw-r--r--src/emacs.c9
7 files changed, 23 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index f8c4c599cd6..639db918f1b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
12014-03-28 Glenn Morris <rgm@gnu.org> 12014-03-28 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.ac (AC_INIT): Add "GNU" in package, add bug address.
4 (PACKAGE_BUGREPORT): Use it.
5
3 * configure.ac (ACL_SUMMARY): Rename from acl_summary, for consistency. 6 * configure.ac (ACL_SUMMARY): Rename from acl_summary, for consistency.
4 (EMACS_CONFIG_FEATURES): New define. 7 (EMACS_CONFIG_FEATURES): New define.
5 8
diff --git a/configure.ac b/configure.ac
index 1b622c9de3c..2ac1828562c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ dnl You should have received a copy of the GNU General Public License
22dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. 22dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 23
24AC_PREREQ(2.65) 24AC_PREREQ(2.65)
25AC_INIT(emacs, 24.4.50) 25AC_INIT(GNU Emacs, 24.4.50, bug-gnu-emacs@gnu.org)
26 26
27dnl We get MINGW64 with MSYS2 27dnl We get MINGW64 with MSYS2
28if test "x$MSYSTEM" = "xMINGW32" -o "x$MSYSTEM" = "xMINGW64" 28if test "x$MSYSTEM" = "xMINGW32" -o "x$MSYSTEM" = "xMINGW64"
@@ -653,7 +653,7 @@ dnl quotation ends
653 653
654if test $unported = yes; then 654if test $unported = yes; then
655 AC_MSG_ERROR([Emacs does not support `${canonical}' systems. 655 AC_MSG_ERROR([Emacs does not support `${canonical}' systems.
656If you think it should, please send a report to bug-gnu-emacs@gnu.org. 656If you think it should, please send a report to ${PACKAGE_BUGREPORT}.
657Check `etc/MACHINES' for recognized configuration names.]) 657Check `etc/MACHINES' for recognized configuration names.])
658fi 658fi
659 659
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 24f17f004f5..8c008185424 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,9 @@
12014-03-28 Glenn Morris <rgm@gnu.org> 12014-03-28 Glenn Morris <rgm@gnu.org>
2 2
3 * cus-start.el (report-emacs-bug-address): Set custom properties.
4 * mail/emacsbug.el (report-emacs-bug-address):
5 Variable is now defined in emacs.c.
6
3 * mail/emacsbug.el (report-emacs-bug): 7 * mail/emacsbug.el (report-emacs-bug):
4 Include system-configuration-features. 8 Include system-configuration-features.
5 9
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 7fbddbe1c45..ee09c433f33 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -198,6 +198,8 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
198 198
199 ;; editfns.c 199 ;; editfns.c
200 (user-full-name mail string) 200 (user-full-name mail string)
201 ;; emacs.c
202 (report-emacs-bug-address emacsbug string)
201 ;; eval.c 203 ;; eval.c
202 (max-specpdl-size limits integer) 204 (max-specpdl-size limits integer)
203 (max-lisp-eval-depth limits integer) 205 (max-lisp-eval-depth limits integer)
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 54f7b6a21ea..91451504cab 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -43,11 +43,6 @@
43(define-obsolete-variable-alias 'report-emacs-bug-pretest-address 43(define-obsolete-variable-alias 'report-emacs-bug-pretest-address
44 'report-emacs-bug-address "24.1") 44 'report-emacs-bug-address "24.1")
45 45
46(defcustom report-emacs-bug-address "bug-gnu-emacs@gnu.org"
47 "Address of mailing list for GNU Emacs bugs."
48 :group 'emacsbug
49 :type 'string)
50
51(defcustom report-emacs-bug-no-confirmation nil 46(defcustom report-emacs-bug-no-confirmation nil
52 "If non-nil, suppress the confirmations asked for the sake of novice users." 47 "If non-nil, suppress the confirmations asked for the sake of novice users."
53 :group 'emacsbug 48 :group 'emacsbug
diff --git a/src/ChangeLog b/src/ChangeLog
index 1527c98f052..3241d3953c9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,10 @@
12014-03-28 Glenn Morris <rgm@gnu.org> 12014-03-28 Glenn Morris <rgm@gnu.org>
2 2
3 * emacs.c (emacs_version): Use PACKAGE_VERSION rather than VERSION.
4 (emacs_bugreport): New variable.
5 (usage_message): Use PACKAGE_BUGREPORT.
6 (syms_of_emacs) <report-emacs-bug-address>: New variable.
7
3 * emacs.c (syms_of_emacs) <system-configuration-features>: New var. 8 * emacs.c (syms_of_emacs) <system-configuration-features>: New var.
4 9
52014-03-27 Paul Eggert <eggert@cs.ucla.edu> 102014-03-27 Paul Eggert <eggert@cs.ucla.edu>
diff --git a/src/emacs.c b/src/emacs.c
index 07deccd16ec..56096016d41 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -105,8 +105,9 @@ extern void moncontrol (int mode);
105#include <sys/personality.h> 105#include <sys/personality.h>
106#endif 106#endif
107 107
108static const char emacs_version[] = VERSION; 108static const char emacs_version[] = PACKAGE_VERSION;
109static const char emacs_copyright[] = COPYRIGHT; 109static const char emacs_copyright[] = COPYRIGHT;
110static const char emacs_bugreport[] = PACKAGE_BUGREPORT;
110 111
111/* Empty lisp strings. To avoid having to build any others. */ 112/* Empty lisp strings. To avoid having to build any others. */
112Lisp_Object empty_unibyte_string, empty_multibyte_string; 113Lisp_Object empty_unibyte_string, empty_multibyte_string;
@@ -324,7 +325,7 @@ abbreviation for a --option.\n\
324Various environment variables and window system resources also affect\n\ 325Various environment variables and window system resources also affect\n\
325the operation of Emacs. See the main documentation.\n\ 326the operation of Emacs. See the main documentation.\n\
326\n\ 327\n\
327Report bugs to bug-gnu-emacs@gnu.org. First, please see the Bugs\n\ 328Report bugs to " PACKAGE_BUGREPORT ". First, please see the Bugs\n\
328section of the Emacs manual or the file BUGS.\n" 329section of the Emacs manual or the file BUGS.\n"
329 }; 330 };
330 331
@@ -2543,6 +2544,10 @@ This is nil during initialization. */);
2543 doc: /* Version numbers of this version of Emacs. */); 2544 doc: /* Version numbers of this version of Emacs. */);
2544 Vemacs_version = build_string (emacs_version); 2545 Vemacs_version = build_string (emacs_version);
2545 2546
2547 DEFVAR_LISP ("report-emacs-bug-address", Vreport_emacs_bug_address,
2548 doc: /* Address of mailing list for GNU Emacs bugs. */);
2549 Vreport_emacs_bug_address = build_string (emacs_bugreport);
2550
2546 DEFVAR_LISP ("dynamic-library-alist", Vdynamic_library_alist, 2551 DEFVAR_LISP ("dynamic-library-alist", Vdynamic_library_alist,
2547 doc: /* Alist of dynamic libraries vs external files implementing them. 2552 doc: /* Alist of dynamic libraries vs external files implementing them.
2548Each element is a list (LIBRARY FILE...), where the car is a symbol 2553Each element is a list (LIBRARY FILE...), where the car is a symbol