diff options
author | Glenn Morris <rgm@gnu.org> | 2016-01-19 16:02:18 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2016-01-19 16:02:18 -0500 |
commit | 9d00392520abc4421f0a5992298f3cb8077c78b0 (patch) | |
tree | e6a169e9d9b503273b20e9f7d36aaa68412e0483 /lisp/xwidget.el | |
parent | c7441cd7d8befe1f79ed3509c4a2202a01314336 (diff) | |
download | emacs-9d00392520abc4421f0a5992298f3cb8077c78b0.tar.gz emacs-9d00392520abc4421f0a5992298f3cb8077c78b0.tar.bz2 emacs-9d00392520abc4421f0a5992298f3cb8077c78b0.zip |
* lisp/xwidget.el (report-xwidget-bug): Remove.
(top-level): No longer require reporter.
Diffstat (limited to 'lisp/xwidget.el')
-rw-r--r-- | lisp/xwidget.el | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lisp/xwidget.el b/lisp/xwidget.el index 9c38c8e84ca..2472c8db93f 100644 --- a/lisp/xwidget.el +++ b/lisp/xwidget.el @@ -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 |