diff options
author | Glenn Morris <rgm@gnu.org> | 2014-03-28 18:03:42 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-03-28 18:03:42 -0400 |
commit | c3153003fb0bfeef7ade4c060501c23f0556195d (patch) | |
tree | 2d3f91edf8be318028068b4566051a31df01fec3 /lisp | |
parent | 687e0e19ae4dbd1a6fc3f6d3d21fd6b754e7589d (diff) | |
download | emacs-c3153003fb0bfeef7ade4c060501c23f0556195d.tar.gz |
Add system-configuration-features, summarising some configure results
* configure.ac (ACL_SUMMARY): Rename from acl_summary, for consistency.
(EMACS_CONFIG_FEATURES): New define.
* src/emacs.c (syms_of_emacs) <system-configuration-features>: New var.
* lisp/mail/emacsbug.el (report-emacs-bug):
Include system-configuration-features.
* etc/NEWS: Mention this.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 7 | ||||
-rw-r--r-- | lisp/mail/emacsbug.el | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index ee50bed6209..24f17f004f5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,12 +1,15 @@ +2014-03-28 Glenn Morris <rgm@gnu.org> + + * mail/emacsbug.el (report-emacs-bug): + Include system-configuration-features. + 2014-03-28 Michal Nazarewicz <mina86@mina86.com> * simple.el (cycle-spacing): Never delete spaces on first run by default, but do so in a new 'fast mode and if there are already N spaces (the previous behaviour). - Compare N with its value in previous invocation so that changing prefix argument restarts `cycle-spacing' sequence. - The idea is that with this change, binding M-SPC to `cycle-spacing' should not introduce any changes in behaviour of the binding so long as users do not type M-SPC twice in a raw with diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index b994949e94d..54f7b6a21ea 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -1,7 +1,7 @@ ;;; emacsbug.el --- command to report Emacs bugs to appropriate mailing list -;; Copyright (C) 1985, 1994, 1997-1998, 2000-2014 Free Software -;; Foundation, Inc. +;; Copyright (C) 1985, 1994, 1997-1998, 2000-2014 +;; Free Software Foundation, Inc. ;; Author: K. Shane Hartman ;; Maintainer: emacs-devel@gnu.org @@ -251,6 +251,8 @@ usually do not have translators for other languages.\n\n"))) (insert "Configured using:\n `configure " system-configuration-options "'\n\n") (fill-region (line-beginning-position -1) (point))) + (insert "Configured features:\n" system-configuration-features "\n\n") + (fill-region (line-beginning-position -1) (point)) (insert "Important settings:\n") (mapc (lambda (var) |