(match): Use yellow background on light-bg terminals.
[emacs.git] / lisp / mail / emacsbug.el
blobc60d93b26b1103a114b42b3d0468153e6fbdaa4f
1 ;;; emacsbug.el --- command to report Emacs bugs to appropriate mailing list
3 ;; Copyright (C) 1985, 1994, 1997, 1998, 2000, 2001, 2002, 2003,
4 ;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: K. Shane Hartman
7 ;; Maintainer: FSF
8 ;; Keywords: maint mail
10 ;; Not fully installed because it can work only on Internet hosts.
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Commentary:
30 ;; `M-x report-emacs-bug' starts an email note to the Emacs maintainers
31 ;; describing a problem. Here's how it's done...
33 ;;; Code:
35 ;; >> This should be an address which is accessible to your machine,
36 ;; >> otherwise you can't use this file. It will only work on the
37 ;; >> internet with this address.
39 (require 'sendmail)
41 (defgroup emacsbug nil
42 "Sending Emacs bug reports."
43 :group 'maint
44 :group 'mail)
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)
51 (defcustom report-emacs-bug-pretest-address "emacs-pretest-bug@gnu.org"
52 "*Address of mailing list for GNU Emacs pretest bugs."
53 :group 'emacsbug
54 :type 'string)
56 (defvar report-emacs-bug-orig-text nil
57 "The automatically-created initial text of bug report.")
59 (defcustom report-emacs-bug-no-confirmation nil
60 "*If non-nil, suppress the confirmations asked for the sake of novice users."
61 :group 'emacsbug
62 :type 'boolean)
64 (defcustom report-emacs-bug-no-explanations nil
65 "*If non-nil, suppress the explanations given for the sake of novice users."
66 :group 'emacsbug
67 :type 'boolean)
69 ;;;###autoload
70 (defun report-emacs-bug (topic &optional recent-keys)
71 "Report a bug in GNU Emacs.
72 Prompts for bug subject. Leaves you in a mail buffer."
73 ;; This strange form ensures that (recent-keys) is the value before
74 ;; the bug subject string is read.
75 (interactive (reverse (list (recent-keys) (read-string "Bug Subject: "))))
76 ;; If there are four numbers in emacs-version, this is a pretest
77 ;; version.
78 (let* ((pretest-p (string-match "\\..*\\..*\\." emacs-version))
79 (from-buffer (current-buffer))
80 (reporting-address (if pretest-p
81 report-emacs-bug-pretest-address
82 report-emacs-bug-address))
83 ;; Put these properties on semantically-void text.
84 (prompt-properties '(field emacsbug-prompt
85 intangible but-helpful
86 rear-nonsticky t))
87 user-point message-end-point)
88 (setq message-end-point
89 (with-current-buffer (get-buffer-create "*Messages*")
90 (point-max-marker)))
91 (compose-mail reporting-address
92 topic)
93 ;; The rest of this does not execute
94 ;; if the user was asked to confirm and said no.
95 (rfc822-goto-eoh)
96 (forward-line 1)
98 (let ((signature (buffer-substring (point) (point-max))))
99 (delete-region (point) (point-max))
100 (insert signature)
101 (backward-char (length signature)))
102 (unless report-emacs-bug-no-explanations
103 ;; Insert warnings for novice users.
104 (when (string-match "@gnu\\.org^" reporting-address)
105 (insert "This bug report will be sent to the Free Software Foundation,\n")
106 (let ((pos (point)))
107 (insert "not to your local site managers!")
108 (put-text-property pos (point) 'face 'highlight)))
109 (insert "\nPlease write in ")
110 (let ((pos (point)))
111 (insert "English")
112 (put-text-property pos (point) 'face 'highlight))
113 (insert " if possible, because the Emacs maintainers
114 usually do not have translators to read other languages for them.\n\n")
115 (insert (format "Your bug report will be posted to the %s mailing list"
116 reporting-address))
117 (if pretest-p
118 (insert ".\n\n")
119 (insert ",\nand to the gnu.emacs.bug news group.\n\n")))
121 (insert "Please describe exactly what actions triggered the bug\n"
122 "and the precise symptoms of the bug:\n\n")
123 (add-text-properties (point) (save-excursion (mail-text) (point))
124 prompt-properties)
126 (setq user-point (point))
127 (insert "\n\n")
129 (insert "If Emacs crashed, and you have the Emacs process in the gdb debugger,\n"
130 "please include the output from the following gdb commands:\n"
131 " `bt full' and `xbacktrace'.\n")
133 (let ((debug-file (expand-file-name "DEBUG" data-directory)))
134 (if (file-readable-p debug-file)
135 (insert "If you would like to further debug the crash, please read the file\n"
136 debug-file " for instructions.\n")))
137 (add-text-properties (1+ user-point) (point) prompt-properties)
139 (insert "\n\nIn " (emacs-version) "\n")
140 (if (fboundp 'x-server-vendor)
141 (condition-case nil
142 ;; This is used not only for X11 but also W32 and others.
143 (insert "Windowing system distributor `" (x-server-vendor)
144 "', version "
145 (mapconcat 'number-to-string (x-server-version) ".") "\n")
146 (error t)))
147 (if (and system-configuration-options
148 (not (equal system-configuration-options "")))
149 (insert "configured using `configure "
150 system-configuration-options "'\n\n"))
151 (insert "Important settings:\n")
152 (mapcar
153 '(lambda (var)
154 (insert (format " value of $%s: %s\n" var (getenv var))))
155 '("LC_ALL" "LC_COLLATE" "LC_CTYPE" "LC_MESSAGES"
156 "LC_MONETARY" "LC_NUMERIC" "LC_TIME" "LANG"))
157 (insert (format " locale-coding-system: %s\n" locale-coding-system))
158 (insert (format " default-enable-multibyte-characters: %s\n"
159 default-enable-multibyte-characters))
160 (insert "\n")
161 (insert (format "Major mode: %s\n"
162 (buffer-local-value 'mode-name from-buffer)))
163 (insert "\n")
164 (insert "Minor modes in effect:\n")
165 (dolist (mode minor-mode-list)
166 (and (boundp mode) (buffer-local-value mode from-buffer)
167 (insert (format " %s: %s\n" mode
168 (buffer-local-value mode from-buffer)))))
169 (insert "\n")
170 (insert "Recent input:\n")
171 (let ((before-keys (point)))
172 (insert (mapconcat (lambda (key)
173 (if (or (integerp key)
174 (symbolp key)
175 (listp key))
176 (single-key-description key)
177 (prin1-to-string key nil)))
178 (or recent-keys (recent-keys))
179 " "))
180 (save-restriction
181 (narrow-to-region before-keys (point))
182 (goto-char before-keys)
183 (while (progn (move-to-column 50) (not (eobp)))
184 (search-forward " " nil t)
185 (insert "\n"))))
186 (let ((message-buf (get-buffer "*Messages*")))
187 (if message-buf
188 (let (beg-pos
189 (end-pos message-end-point))
190 (with-current-buffer message-buf
191 (goto-char end-pos)
192 (forward-line -10)
193 (setq beg-pos (point)))
194 (insert "\n\nRecent messages:\n")
195 (insert-buffer-substring message-buf beg-pos end-pos))))
196 ;; This is so the user has to type something
197 ;; in order to send easily.
198 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
199 (define-key (current-local-map) "\C-c\C-i" 'report-emacs-bug-info)
200 (unless report-emacs-bug-no-explanations
201 (with-output-to-temp-buffer "*Bug Help*"
202 (if (eq mail-user-agent 'sendmail-user-agent)
203 (princ (substitute-command-keys
204 "Type \\[mail-send-and-exit] to send the bug report.\n")))
205 (princ (substitute-command-keys
206 "Type \\[kill-buffer] RET to cancel (don't send it).\n"))
207 (terpri)
208 (princ (substitute-command-keys
209 "Type \\[report-emacs-bug-info] to visit in Info the Emacs Manual section
210 about when and how to write a bug report,
211 and what information to supply so that the bug can be fixed.
212 Type SPC to scroll through this section and its subsections."))))
213 ;; Make it less likely people will send empty messages.
214 (make-local-variable 'mail-send-hook)
215 (add-hook 'mail-send-hook 'report-emacs-bug-hook)
216 (save-excursion
217 (goto-char (point-max))
218 (skip-chars-backward " \t\n")
219 (make-local-variable 'report-emacs-bug-orig-text)
220 (setq report-emacs-bug-orig-text (buffer-substring (point-min) (point))))
221 (goto-char user-point)))
223 (defun report-emacs-bug-info ()
224 "Go to the Info node on reporting Emacs bugs."
225 (interactive)
226 (info)
227 (Info-directory)
228 (Info-menu "emacs")
229 (Info-goto-node "Bugs"))
231 (defun report-emacs-bug-hook ()
232 (save-excursion
233 (save-excursion
234 (goto-char (point-max))
235 (skip-chars-backward " \t\n")
236 (if (and (= (- (point) (point-min))
237 (length report-emacs-bug-orig-text))
238 (equal (buffer-substring (point-min) (point))
239 report-emacs-bug-orig-text))
240 (error "No text entered in bug report")))
242 ;; Check the buffer contents and reject non-English letters.
243 (save-excursion
244 (goto-char (point-min))
245 (skip-chars-forward "\0-\177")
246 (if (not (eobp))
247 (if (or report-emacs-bug-no-confirmation
248 (y-or-n-p "Convert non-ASCII letters to hexadecimal? "))
249 (while (progn (skip-chars-forward "\0-\177")
250 (not (eobp)))
251 (let ((ch (following-char)))
252 (delete-char 1)
253 (insert (format "=%02x" ch)))))))
255 ;; The last warning for novice users.
256 (if (or report-emacs-bug-no-confirmation
257 (yes-or-no-p
258 "Send this bug report to the Emacs maintainers? "))
259 ;; Just send the current mail.
261 (goto-char (point-min))
262 (if (search-forward "To: ")
263 (let ((pos (point)))
264 (end-of-line)
265 (delete-region pos (point))))
266 (kill-local-variable 'mail-send-hook)
267 (with-output-to-temp-buffer "*Bug Help*"
268 (princ (substitute-command-keys "\
269 You invoked the command M-x report-emacs-bug,
270 but you decided not to mail the bug report to the Emacs maintainers.
272 If you want to mail it to someone else instead,
273 please insert the proper e-mail address after \"To: \",
274 and send the mail again using \\[mail-send-and-exit].")))
275 (error "M-x report-emacs-bug was cancelled, please read *Bug Help* buffer"))
277 ;; Unclutter
278 (mail-text)
279 (let ((pos (1- (point))))
280 (while (setq pos (text-property-any pos (point-max)
281 'field 'emacsbug-prompt))
282 (delete-region pos (field-end (1+ pos)))))))
284 (provide 'emacsbug)
286 ;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49
287 ;;; emacsbug.el ends here