]> code.delx.au - gnu-emacs/commitdiff
* lisp/xwidget.el (report-xwidget-bug): Remove.
authorGlenn Morris <rgm@gnu.org>
Tue, 19 Jan 2016 21:02:18 +0000 (16:02 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 19 Jan 2016 21:02:18 +0000 (16:02 -0500)
(top-level): No longer require reporter.

lisp/xwidget.el

index 9c38c8e84cad8b67b5366f36e0dc722f0697897b..2472c8db93f76f0659a7ae49495169ef5763edb8 100644 (file)
@@ -31,7 +31,6 @@
 ;;; Code:
 
 (require 'cl-lib)
-(require 'reporter)
 (require 'bookmark)
 
 (defcustom xwidget-webkit-scroll-behaviour 'native
@@ -583,26 +582,6 @@ It can be retrieved with `(xwidget-get XWIDGET PROPNAME)'."
 
 (add-hook 'kill-buffer-query-functions 'xwidget-kill-buffer-query-function)
 
-(defun report-xwidget-bug ()
-  "Report a bug in GNU Emacs about the XWidget branch.
-Prompts for bug subject.  Leaves you in a mail buffer."
-  (interactive)
-  (let ((reporter-prompt-for-summary-p t))
-    (reporter-submit-bug-report "submit@debbugs.gnu.org" nil nil nil nil
-                                (format "Package: emacs-xwidgets
-
-Please describe exactly what actions triggered the bug, and the
-precise symptoms of the bug.  If you can, give a recipe starting
-from `emacs -Q'.
-
-If Emacs crashed, and you have the Emacs process in the gdb
-deubbger, please include the output from the following gdb
-commands:
-    `bt full' and `xbacktrace'.
-
-For information about debugging Emacs, please read the file
-%s" (expand-file-name "DEBUG" data-directory)))))
-
 (provide 'xwidget)
 
 ;;; xwidget.el ends here