aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/emacs.c9
2 files changed, 12 insertions, 2 deletions
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