2001-07-15 16:15:35 +00:00
|
|
|
;;; emacsbug.el --- command to report Emacs bugs to appropriate mailing list
|
1992-05-30 23:54:21 +00:00
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
;; Copyright (C) 1985, 1994, 1997-1998, 2000-2017 Free Software
|
2015-01-01 14:26:41 -08:00
|
|
|
;; Foundation, Inc.
|
1992-07-22 04:22:30 +00:00
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Author: K. Shane Hartman
|
2014-02-09 17:34:22 -08:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1998-01-26 03:14:34 +00:00
|
|
|
;; Keywords: maint mail
|
2010-08-29 12:17:13 -04:00
|
|
|
;; Package: emacs
|
1992-07-16 17:20:42 +00:00
|
|
|
|
1989-10-31 16:00:07 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 07:25:26 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1989-10-31 16:00:07 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 07:25:26 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1989-10-31 16:00:07 +00:00
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
2002-07-19 20:17:58 +00:00
|
|
|
;; `M-x report-emacs-bug' starts an email note to the Emacs maintainers
|
2008-02-28 03:43:47 +00:00
|
|
|
;; describing a problem. You need to be able to send mail from Emacs
|
|
|
|
;; to complete the process. Alternatively, compose the bug report in
|
|
|
|
;; Emacs then paste it into your normal mail client.
|
1993-03-22 03:27:18 +00:00
|
|
|
|
1992-07-16 17:20:42 +00:00
|
|
|
;;; Code:
|
1989-10-31 16:00:07 +00:00
|
|
|
|
2012-02-10 19:16:19 +01:00
|
|
|
(require 'sendmail)
|
|
|
|
(require 'message)
|
|
|
|
|
1998-01-26 03:14:34 +00:00
|
|
|
(defgroup emacsbug nil
|
|
|
|
"Sending Emacs bug reports."
|
|
|
|
:group 'maint
|
|
|
|
:group 'mail)
|
|
|
|
|
2010-03-17 23:18:47 -07:00
|
|
|
(define-obsolete-variable-alias 'report-emacs-bug-pretest-address
|
|
|
|
'report-emacs-bug-address "24.1")
|
|
|
|
|
1998-01-26 03:14:34 +00:00
|
|
|
(defcustom report-emacs-bug-no-confirmation nil
|
2008-02-28 03:43:47 +00:00
|
|
|
"If non-nil, suppress the confirmations asked for the sake of novice users."
|
1998-01-26 03:14:34 +00:00
|
|
|
:group 'emacsbug
|
|
|
|
:type 'boolean)
|
|
|
|
|
|
|
|
(defcustom report-emacs-bug-no-explanations nil
|
2008-02-28 03:43:47 +00:00
|
|
|
"If non-nil, suppress the explanations given for the sake of novice users."
|
1998-01-26 03:14:34 +00:00
|
|
|
:group 'emacsbug
|
|
|
|
:type 'boolean)
|
1997-07-15 08:23:58 +00:00
|
|
|
|
2008-02-28 03:43:47 +00:00
|
|
|
;; User options end here.
|
|
|
|
|
|
|
|
(defvar report-emacs-bug-orig-text nil
|
2009-12-11 01:21:35 +00:00
|
|
|
"The automatically-created initial text of the bug report.")
|
|
|
|
|
|
|
|
(defvar report-emacs-bug-send-command nil
|
|
|
|
"Name of the command to send the bug report, as a string.")
|
|
|
|
(make-variable-buffer-local 'report-emacs-bug-send-command)
|
|
|
|
|
|
|
|
(defvar report-emacs-bug-send-hook nil
|
|
|
|
"Hook run before sending the bug report.")
|
|
|
|
(make-variable-buffer-local 'report-emacs-bug-send-hook)
|
2008-02-28 03:43:47 +00:00
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
(declare-function x-server-vendor "xfns.c" (&optional terminal))
|
|
|
|
(declare-function x-server-version "xfns.c" (&optional terminal))
|
2009-12-14 03:28:34 +00:00
|
|
|
(declare-function message-sort-headers "message" ())
|
2010-03-17 23:18:47 -07:00
|
|
|
(defvar message-strip-special-text-properties)
|
2008-06-12 03:56:20 +00:00
|
|
|
|
2011-01-30 19:59:58 +01:00
|
|
|
(defun report-emacs-bug-can-use-osx-open ()
|
2016-11-06 00:33:43 -07:00
|
|
|
"Return non-nil if the macOS \"open\" command is available for mailing."
|
2011-01-30 19:59:58 +01:00
|
|
|
(and (featurep 'ns)
|
|
|
|
(equal (executable-find "open") "/usr/bin/open")
|
|
|
|
(memq system-type '(darwin))))
|
|
|
|
|
2010-08-17 12:07:41 +02:00
|
|
|
(defun report-emacs-bug-can-use-xdg-email ()
|
2012-02-08 22:29:41 -05:00
|
|
|
"Return non-nil if the \"xdg-email\" command can be used.
|
2017-03-09 19:01:19 -08:00
|
|
|
xdg-email is a desktop utility that calls your preferred mail client."
|
|
|
|
(and ;; See browse-url-can-use-xdg-open.
|
|
|
|
(or (getenv "DISPLAY") (getenv "WAYLAND_DISPLAY"))
|
|
|
|
(executable-find "xdg-email")))
|
2010-08-17 12:07:41 +02:00
|
|
|
|
|
|
|
(defun report-emacs-bug-insert-to-mailer ()
|
2012-02-08 22:29:41 -05:00
|
|
|
"Send the message to your preferred mail client.
|
2016-11-06 00:33:43 -07:00
|
|
|
This requires either the macOS \"open\" command, or the freedesktop
|
2012-02-08 22:29:41 -05:00
|
|
|
\"xdg-email\" command to be available."
|
2010-08-17 12:07:41 +02:00
|
|
|
(interactive)
|
|
|
|
(save-excursion
|
2012-02-08 22:29:41 -05:00
|
|
|
;; FIXME? use mail-fetch-field?
|
2010-08-17 12:07:41 +02:00
|
|
|
(let* ((to (progn
|
|
|
|
(goto-char (point-min))
|
|
|
|
(forward-line)
|
|
|
|
(and (looking-at "^To: \\(.*\\)")
|
|
|
|
(match-string-no-properties 1))))
|
|
|
|
(subject (progn
|
|
|
|
(forward-line)
|
|
|
|
(and (looking-at "^Subject: \\(.*\\)")
|
|
|
|
(match-string-no-properties 1))))
|
|
|
|
(body (progn
|
|
|
|
(forward-line 2)
|
|
|
|
(if (> (point-max) (point))
|
|
|
|
(buffer-substring-no-properties (point) (point-max))))))
|
|
|
|
(if (and to subject body)
|
2011-01-30 19:59:58 +01:00
|
|
|
(if (report-emacs-bug-can-use-osx-open)
|
|
|
|
(start-process "/usr/bin/open" nil "open"
|
2011-05-25 20:52:33 -04:00
|
|
|
(concat "mailto:" to
|
2011-01-30 19:59:58 +01:00
|
|
|
"?subject=" (url-hexify-string subject)
|
|
|
|
"&body=" (url-hexify-string body)))
|
|
|
|
(start-process "xdg-email" nil "xdg-email"
|
|
|
|
"--subject" subject
|
|
|
|
"--body" body
|
|
|
|
(concat "mailto:" to)))
|
2010-08-17 12:07:41 +02:00
|
|
|
(error "Subject, To or body not found")))))
|
|
|
|
|
2014-11-15 16:22:29 +01:00
|
|
|
;; It's the default mail mode, so it seems OK to use its features.
|
|
|
|
(autoload 'message-bogus-recipient-p "message")
|
|
|
|
(autoload 'message-make-address "message")
|
|
|
|
(defvar message-send-mail-function)
|
|
|
|
(defvar message-sendmail-envelope-from)
|
|
|
|
|
1991-12-21 09:14:03 +00:00
|
|
|
;;;###autoload
|
2014-11-03 23:07:04 -08:00
|
|
|
(defun report-emacs-bug (topic &optional unused)
|
1991-12-21 09:14:03 +00:00
|
|
|
"Report a bug in GNU Emacs.
|
1989-10-31 16:00:07 +00:00
|
|
|
Prompts for bug subject. Leaves you in a mail buffer."
|
2014-11-03 23:07:04 -08:00
|
|
|
(declare (advertised-calling-convention (topic) "24.5"))
|
2014-11-03 23:11:37 -08:00
|
|
|
(interactive "sBug Subject: ")
|
2007-08-15 02:23:42 +00:00
|
|
|
;; The syntax `version;' is preferred to `[version]' because the
|
|
|
|
;; latter could be mistakenly stripped by mailing software.
|
2017-02-17 20:15:21 -05:00
|
|
|
(setq topic (concat emacs-version "; " topic))
|
2010-03-17 23:18:47 -07:00
|
|
|
(let ((from-buffer (current-buffer))
|
2011-01-30 19:59:58 +01:00
|
|
|
(can-insert-mail (or (report-emacs-bug-can-use-xdg-email)
|
|
|
|
(report-emacs-bug-can-use-osx-open)))
|
2010-03-17 23:18:47 -07:00
|
|
|
user-point message-end-point)
|
1997-10-15 23:03:30 +00:00
|
|
|
(setq message-end-point
|
2013-09-17 00:39:54 -07:00
|
|
|
(with-current-buffer (messages-buffer)
|
1997-10-15 23:03:30 +00:00
|
|
|
(point-max-marker)))
|
2015-12-28 19:11:22 +01:00
|
|
|
(condition-case nil
|
|
|
|
;; For the novice user make sure there's always enough space for
|
|
|
|
;; the mail and the warnings buffer on this frame (Bug#10873).
|
|
|
|
(unless report-emacs-bug-no-explanations
|
|
|
|
(delete-other-windows)
|
|
|
|
(set-window-dedicated-p nil nil)
|
|
|
|
(set-frame-parameter nil 'unsplittable nil))
|
|
|
|
(error nil))
|
2010-03-17 23:18:47 -07:00
|
|
|
(compose-mail report-emacs-bug-address topic)
|
2009-12-13 23:43:17 +00:00
|
|
|
;; The rest of this does not execute if the user was asked to
|
|
|
|
;; confirm and said no.
|
2010-03-17 23:18:47 -07:00
|
|
|
(when (eq major-mode 'message-mode)
|
|
|
|
;; Message-mode sorts the headers before sending. We sort now so
|
|
|
|
;; that report-emacs-bug-orig-text remains valid. (Bug#5178)
|
|
|
|
(message-sort-headers)
|
|
|
|
;; Stop message-mode stealing the properties we will add.
|
2014-11-15 16:22:29 +01:00
|
|
|
(set (make-local-variable 'message-strip-special-text-properties) nil)
|
|
|
|
;; Make sure we default to the From: address as envelope when sending
|
|
|
|
;; through sendmail.
|
|
|
|
(when (and (not message-sendmail-envelope-from)
|
|
|
|
(message-bogus-recipient-p (message-make-address)))
|
|
|
|
(set (make-local-variable 'message-sendmail-envelope-from) 'header)))
|
1998-04-30 06:32:07 +00:00
|
|
|
(rfc822-goto-eoh)
|
|
|
|
(forward-line 1)
|
2012-04-03 21:05:29 -04:00
|
|
|
;; Move the mail signature to the proper place.
|
|
|
|
(let ((signature (buffer-substring (point) (point-max)))
|
|
|
|
(inhibit-read-only t))
|
1998-04-30 06:32:07 +00:00
|
|
|
(delete-region (point) (point-max))
|
1998-05-07 06:31:31 +00:00
|
|
|
(insert signature)
|
|
|
|
(backward-char (length signature)))
|
1998-01-26 03:14:34 +00:00
|
|
|
(unless report-emacs-bug-no-explanations
|
|
|
|
;; Insert warnings for novice users.
|
2011-06-28 14:10:11 -04:00
|
|
|
(if (not (equal "bug-gnu-emacs@gnu.org" report-emacs-bug-address))
|
|
|
|
(insert (format "The report will be sent to %s.\n\n"
|
|
|
|
report-emacs-bug-address))
|
|
|
|
(insert "This bug report will be sent to the ")
|
2012-12-11 13:52:31 -05:00
|
|
|
(insert-text-button
|
2011-06-28 14:10:11 -04:00
|
|
|
"Bug-GNU-Emacs"
|
|
|
|
'face 'link
|
|
|
|
'help-echo (concat "mouse-2, RET: Follow this link")
|
|
|
|
'action (lambda (button)
|
2017-10-01 19:53:56 -07:00
|
|
|
(browse-url "https://lists.gnu.org/archive/html/bug-gnu-emacs/"))
|
2011-06-28 14:10:11 -04:00
|
|
|
'follow-link t)
|
|
|
|
(insert " mailing list\nand the GNU bug tracker at ")
|
2012-12-11 13:52:31 -05:00
|
|
|
(insert-text-button
|
2011-06-28 14:10:11 -04:00
|
|
|
"debbugs.gnu.org"
|
|
|
|
'face 'link
|
|
|
|
'help-echo (concat "mouse-2, RET: Follow this link")
|
|
|
|
'action (lambda (button)
|
2017-09-13 15:52:52 -07:00
|
|
|
(browse-url "https://debbugs.gnu.org/"))
|
2011-06-28 14:10:11 -04:00
|
|
|
'follow-link t)
|
|
|
|
|
|
|
|
(insert ". Please check that
|
|
|
|
the From: line contains a valid email address. After a delay of up
|
2012-07-24 22:48:19 -07:00
|
|
|
to one day, you should receive an acknowledgment at that address.
|
2011-06-28 14:10:11 -04:00
|
|
|
|
|
|
|
Please write in English if possible, as the Emacs maintainers
|
|
|
|
usually do not have translators for other languages.\n\n")))
|
|
|
|
|
|
|
|
(insert "Please describe exactly what actions triggered the bug, and\n"
|
|
|
|
"the precise symptoms of the bug. If you can, give a recipe\n"
|
2015-08-31 12:42:45 -07:00
|
|
|
"starting from 'emacs -Q':\n\n")
|
2012-12-11 13:52:31 -05:00
|
|
|
(let ((txt (delete-and-extract-region
|
|
|
|
(save-excursion (rfc822-goto-eoh) (line-beginning-position 2))
|
|
|
|
(point))))
|
|
|
|
(insert (propertize "\n" 'display txt)))
|
2002-05-18 19:19:18 +00:00
|
|
|
(setq user-point (point))
|
2005-07-21 08:56:04 +00:00
|
|
|
(insert "\n\n")
|
|
|
|
|
2006-11-06 02:29:24 +00:00
|
|
|
(insert "If Emacs crashed, and you have the Emacs process in the gdb debugger,\n"
|
2005-07-21 08:56:04 +00:00
|
|
|
"please include the output from the following gdb commands:\n"
|
2015-08-31 12:42:45 -07:00
|
|
|
" 'bt full' and 'xbacktrace'.\n")
|
2005-07-21 08:56:04 +00:00
|
|
|
|
|
|
|
(let ((debug-file (expand-file-name "DEBUG" data-directory)))
|
|
|
|
(if (file-readable-p debug-file)
|
2009-10-23 16:17:17 +00:00
|
|
|
(insert "For information about debugging Emacs, please read the file\n"
|
|
|
|
debug-file ".\n")))
|
2012-12-11 13:52:31 -05:00
|
|
|
(let ((txt (delete-and-extract-region (1+ user-point) (point))))
|
|
|
|
(insert (propertize "\n" 'display txt)))
|
2002-05-18 19:19:18 +00:00
|
|
|
|
2016-05-09 22:06:25 +02:00
|
|
|
(insert "\nIn " (emacs-version))
|
2015-12-28 18:43:09 -08:00
|
|
|
(if emacs-build-system
|
|
|
|
(insert " built on " emacs-build-system))
|
|
|
|
(insert "\n")
|
|
|
|
|
2014-01-08 17:57:47 -05:00
|
|
|
(if (stringp emacs-repository-version)
|
|
|
|
(insert "Repository revision: " emacs-repository-version "\n"))
|
2004-10-28 07:37:02 +00:00
|
|
|
(if (fboundp 'x-server-vendor)
|
2004-11-23 19:22:43 +00:00
|
|
|
(condition-case nil
|
2007-03-11 01:29:50 +00:00
|
|
|
;; This is used not only for X11 but also W32 and others.
|
2015-08-31 12:42:45 -07:00
|
|
|
(insert "Windowing system distributor '" (x-server-vendor)
|
2007-03-11 01:29:50 +00:00
|
|
|
"', version "
|
2004-11-23 19:22:43 +00:00
|
|
|
(mapconcat 'number-to-string (x-server-version) ".") "\n")
|
|
|
|
(error t)))
|
2012-09-23 17:46:47 -07:00
|
|
|
(let ((lsb (with-temp-buffer
|
|
|
|
(if (eq 0 (ignore-errors
|
|
|
|
(call-process "lsb_release" nil '(t nil)
|
|
|
|
nil "-d")))
|
|
|
|
(buffer-string)))))
|
|
|
|
(if (stringp lsb)
|
2012-09-23 23:31:02 -07:00
|
|
|
(insert "System " lsb "\n")))
|
2016-05-09 22:06:25 +02:00
|
|
|
(let ((message-buf (get-buffer "*Messages*")))
|
|
|
|
(if message-buf
|
|
|
|
(let (beg-pos
|
|
|
|
(end-pos message-end-point))
|
|
|
|
(with-current-buffer message-buf
|
|
|
|
(goto-char end-pos)
|
|
|
|
(forward-line -10)
|
|
|
|
(setq beg-pos (point)))
|
|
|
|
(terpri (current-buffer) t)
|
|
|
|
(insert "Recent messages:\n")
|
|
|
|
(insert-buffer-substring message-buf beg-pos end-pos))))
|
|
|
|
(insert "\n")
|
2012-01-28 12:49:17 +02:00
|
|
|
(when (and system-configuration-options
|
|
|
|
(not (equal system-configuration-options "")))
|
2015-08-31 12:42:45 -07:00
|
|
|
(insert "Configured using:\n 'configure "
|
2012-01-28 12:49:17 +02:00
|
|
|
system-configuration-options "'\n\n")
|
|
|
|
(fill-region (line-beginning-position -1) (point)))
|
2014-03-28 18:03:42 -04:00
|
|
|
(insert "Configured features:\n" system-configuration-features "\n\n")
|
|
|
|
(fill-region (line-beginning-position -1) (point))
|
2001-01-19 16:15:51 +00:00
|
|
|
(insert "Important settings:\n")
|
2007-09-26 00:20:26 +00:00
|
|
|
(mapc
|
2011-05-23 14:57:17 -03:00
|
|
|
(lambda (var)
|
2012-06-06 14:13:09 -04:00
|
|
|
(let ((val (getenv var)))
|
|
|
|
(if val (insert (format " value of $%s: %s\n" var val)))))
|
|
|
|
'("EMACSDATA" "EMACSDOC" "EMACSLOADPATH" "EMACSPATH"
|
|
|
|
"LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES"
|
2006-11-29 13:10:10 +00:00
|
|
|
"LC_MONETARY" "LC_NUMERIC" "LC_TIME" "LANG" "XMODIFIERS"))
|
2001-01-19 16:15:51 +00:00
|
|
|
(insert (format " locale-coding-system: %s\n" locale-coding-system))
|
2013-12-17 20:03:07 -05:00
|
|
|
;; Only ~ 0.2% of people from a sample of 3200 changed this from
|
|
|
|
;; the default, t.
|
|
|
|
(or (default-value 'enable-multibyte-characters)
|
|
|
|
(insert (format " default enable-multibyte-characters: %s\n"
|
|
|
|
(default-value 'enable-multibyte-characters))))
|
1997-10-15 23:03:30 +00:00
|
|
|
(insert "\n")
|
2003-10-05 13:51:43 +00:00
|
|
|
(insert (format "Major mode: %s\n"
|
2008-01-04 06:29:12 +00:00
|
|
|
(format-mode-line
|
|
|
|
(buffer-local-value 'mode-name from-buffer)
|
|
|
|
nil nil from-buffer)))
|
2003-09-30 12:45:44 +00:00
|
|
|
(insert "\n")
|
|
|
|
(insert "Minor modes in effect:\n")
|
|
|
|
(dolist (mode minor-mode-list)
|
2003-10-05 13:51:43 +00:00
|
|
|
(and (boundp mode) (buffer-local-value mode from-buffer)
|
|
|
|
(insert (format " %s: %s\n" mode
|
|
|
|
(buffer-local-value mode from-buffer)))))
|
2009-07-22 02:34:51 +00:00
|
|
|
(insert "\n")
|
|
|
|
(insert "Load-path shadows:\n")
|
2012-09-09 19:19:23 -07:00
|
|
|
(let* ((msg "Checking for load-path shadows...")
|
|
|
|
(result "done")
|
|
|
|
(shadows (progn (message "%s" msg)
|
|
|
|
(condition-case nil (list-load-path-shadows t)
|
|
|
|
(error
|
|
|
|
(setq result "error")
|
|
|
|
"Error during checking")))))
|
|
|
|
(message "%s%s" msg result)
|
2009-07-22 02:34:51 +00:00
|
|
|
(insert (if (zerop (length shadows))
|
|
|
|
"None found.\n"
|
|
|
|
shadows)))
|
2009-10-09 06:29:56 +00:00
|
|
|
(insert (format "\nFeatures:\n%s\n" features))
|
|
|
|
(fill-region (line-beginning-position 0) (point))
|
2014-03-21 14:27:25 -07:00
|
|
|
|
|
|
|
(insert (format "\nMemory information:\n"))
|
|
|
|
(pp (garbage-collect) (current-buffer))
|
2015-08-31 12:42:45 -07:00
|
|
|
|
2009-10-09 06:29:56 +00:00
|
|
|
;; This is so the user has to type something in order to send easily.
|
1997-10-15 23:03:30 +00:00
|
|
|
(use-local-map (nconc (make-sparse-keymap) (current-local-map)))
|
2012-05-21 20:31:34 -07:00
|
|
|
(define-key (current-local-map) "\C-c\C-i" 'info-emacs-bug)
|
2011-01-30 19:59:58 +01:00
|
|
|
(if can-insert-mail
|
2013-02-09 12:43:42 +08:00
|
|
|
(define-key (current-local-map) "\C-c\M-i"
|
2010-08-17 12:07:41 +02:00
|
|
|
'report-emacs-bug-insert-to-mailer))
|
2010-12-09 19:39:18 -08:00
|
|
|
(setq report-emacs-bug-send-command (get mail-user-agent 'sendfunc)
|
|
|
|
report-emacs-bug-send-hook (get mail-user-agent 'hookvar))
|
|
|
|
(if report-emacs-bug-send-command
|
|
|
|
(setq report-emacs-bug-send-command
|
|
|
|
(symbol-name report-emacs-bug-send-command)))
|
1998-05-07 06:34:20 +00:00
|
|
|
(unless report-emacs-bug-no-explanations
|
|
|
|
(with-output-to-temp-buffer "*Bug Help*"
|
2009-10-24 22:09:08 +00:00
|
|
|
(princ "While in the mail buffer:\n\n")
|
2009-12-11 01:21:35 +00:00
|
|
|
(if report-emacs-bug-send-command
|
2009-12-10 08:17:15 +00:00
|
|
|
(princ (substitute-command-keys
|
2009-12-11 01:21:35 +00:00
|
|
|
(format " Type \\[%s] to send the bug report.\n"
|
|
|
|
report-emacs-bug-send-command))))
|
1998-05-07 06:34:20 +00:00
|
|
|
(princ (substitute-command-keys
|
2009-10-24 22:09:08 +00:00
|
|
|
" Type \\[kill-buffer] RET to cancel (don't send it).\n"))
|
2011-01-30 19:59:58 +01:00
|
|
|
(if can-insert-mail
|
2010-08-17 12:07:41 +02:00
|
|
|
(princ (substitute-command-keys
|
2012-02-08 22:29:41 -05:00
|
|
|
" Type \\[report-emacs-bug-insert-to-mailer] to copy text to your preferred mail program.\n")))
|
1998-05-07 06:34:20 +00:00
|
|
|
(terpri)
|
|
|
|
(princ (substitute-command-keys
|
2012-05-21 20:38:10 -07:00
|
|
|
" Type \\[info-emacs-bug] to visit in Info the Emacs Manual section
|
2009-10-24 22:09:08 +00:00
|
|
|
about when and how to write a bug report, and what
|
|
|
|
information you should include to help fix the bug.")))
|
|
|
|
(shrink-window-if-larger-than-buffer (get-buffer-window "*Bug Help*")))
|
1997-10-15 23:03:30 +00:00
|
|
|
;; Make it less likely people will send empty messages.
|
2009-12-11 01:21:35 +00:00
|
|
|
(if report-emacs-bug-send-hook
|
|
|
|
(add-hook report-emacs-bug-send-hook 'report-emacs-bug-hook nil t))
|
2009-12-13 23:43:17 +00:00
|
|
|
(goto-char (point-max))
|
|
|
|
(skip-chars-backward " \t\n")
|
|
|
|
(make-local-variable 'report-emacs-bug-orig-text)
|
|
|
|
(setq report-emacs-bug-orig-text
|
|
|
|
(buffer-substring-no-properties (point-min) (point)))
|
1997-10-15 23:03:30 +00:00
|
|
|
(goto-char user-point)))
|
1994-07-03 20:34:19 +00:00
|
|
|
|
2012-08-15 09:29:11 -07:00
|
|
|
(define-obsolete-function-alias 'report-emacs-bug-info 'info-emacs-bug "24.3")
|
1995-06-09 01:24:47 +00:00
|
|
|
|
1994-07-03 20:34:19 +00:00
|
|
|
(defun report-emacs-bug-hook ()
|
2009-12-11 01:21:35 +00:00
|
|
|
"Do some checking before sending a bug report."
|
1994-07-03 20:34:19 +00:00
|
|
|
(save-excursion
|
2009-12-11 01:21:35 +00:00
|
|
|
(goto-char (point-max))
|
|
|
|
(skip-chars-backward " \t\n")
|
|
|
|
(and (= (- (point) (point-min))
|
|
|
|
(length report-emacs-bug-orig-text))
|
|
|
|
(string-equal (buffer-substring-no-properties (point-min) (point))
|
|
|
|
report-emacs-bug-orig-text)
|
|
|
|
(error "No text entered in bug report"))
|
2012-02-10 19:16:19 +01:00
|
|
|
;; Warning for novice users.
|
2009-12-11 01:21:35 +00:00
|
|
|
(unless (or report-emacs-bug-no-confirmation
|
2011-05-25 20:52:33 -04:00
|
|
|
(yes-or-no-p
|
|
|
|
"Send this bug report to the Emacs maintainers? "))
|
1997-07-15 08:23:58 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
(if (search-forward "To: ")
|
2009-12-11 01:21:35 +00:00
|
|
|
(delete-region (point) (line-end-position)))
|
|
|
|
(if report-emacs-bug-send-hook
|
|
|
|
(kill-local-variable report-emacs-bug-send-hook))
|
1997-07-15 08:23:58 +00:00
|
|
|
(with-output-to-temp-buffer "*Bug Help*"
|
2009-12-11 01:21:35 +00:00
|
|
|
(princ (substitute-command-keys
|
|
|
|
(format "\
|
1997-07-17 05:45:38 +00:00
|
|
|
You invoked the command M-x report-emacs-bug,
|
|
|
|
but you decided not to mail the bug report to the Emacs maintainers.
|
1997-07-15 08:23:58 +00:00
|
|
|
|
1997-07-17 05:45:38 +00:00
|
|
|
If you want to mail it to someone else instead,
|
|
|
|
please insert the proper e-mail address after \"To: \",
|
2009-12-11 01:21:35 +00:00
|
|
|
and send the mail again%s."
|
|
|
|
(if report-emacs-bug-send-command
|
|
|
|
(format " using \\[%s]"
|
|
|
|
report-emacs-bug-send-command)
|
|
|
|
"")))))
|
2014-01-05 22:25:30 -08:00
|
|
|
(error "M-x report-emacs-bug was canceled, please read *Bug Help* buffer"))
|
2012-02-10 19:16:19 +01:00
|
|
|
;; Query the user for the SMTP method, so that we can skip
|
|
|
|
;; questions about From header validity if the user is going to
|
|
|
|
;; use mailclient, anyway.
|
2012-03-03 15:43:03 +01:00
|
|
|
(when (or (and (derived-mode-p 'message-mode)
|
2012-03-04 14:34:33 +01:00
|
|
|
(eq message-send-mail-function 'sendmail-query-once))
|
2012-03-03 15:43:03 +01:00
|
|
|
(and (not (derived-mode-p 'message-mode))
|
|
|
|
(eq send-mail-function 'sendmail-query-once)))
|
2012-02-10 19:16:19 +01:00
|
|
|
(sendmail-query-user-about-smtp)
|
|
|
|
(when (derived-mode-p 'message-mode)
|
|
|
|
(setq message-send-mail-function (message-default-send-mail-function))))
|
|
|
|
(or report-emacs-bug-no-confirmation
|
|
|
|
;; mailclient.el does not need a valid From
|
|
|
|
(if (derived-mode-p 'message-mode)
|
|
|
|
(eq message-send-mail-function 'message-send-mail-with-mailclient)
|
|
|
|
(eq send-mail-function 'mailclient-send-it))
|
|
|
|
;; Not narrowing to the headers, but that's OK.
|
|
|
|
(let ((from (mail-fetch-field "From")))
|
|
|
|
(and (or (not from)
|
|
|
|
(message-bogus-recipient-p from)
|
|
|
|
;; This is the default user-mail-address. On today's
|
|
|
|
;; systems, it seems more likely to be wrong than right,
|
|
|
|
;; since most people don't run their own mail server.
|
|
|
|
(string-match (format "\\<%s@%s\\>"
|
|
|
|
(regexp-quote (user-login-name))
|
|
|
|
(regexp-quote (system-name)))
|
|
|
|
from))
|
|
|
|
(not (yes-or-no-p
|
2015-10-01 21:42:53 -07:00
|
|
|
(format-message "Is `%s' really your email address? "
|
|
|
|
from)))
|
2012-12-11 13:52:31 -05:00
|
|
|
(error "Please edit the From address and try again"))))))
|
1989-10-31 16:00:07 +00:00
|
|
|
|
2010-11-20 12:39:44 +01:00
|
|
|
|
1993-03-25 01:47:39 +00:00
|
|
|
(provide 'emacsbug)
|
|
|
|
|
1992-05-30 23:54:21 +00:00
|
|
|
;;; emacsbug.el ends here
|