diff options
author | Colin Walters <walters@gnu.org> | 2001-11-22 07:59:01 +0000 |
---|---|---|
committer | Colin Walters <walters@gnu.org> | 2001-11-22 07:59:01 +0000 |
commit | 8f148852e189a9c126469173d42f7ef05bad13ac (patch) | |
tree | 961567926ee499669254a0c44986a6fe9a7247d8 /lisp/calc/calc-misc.el | |
parent | c6c8cba42ec630a0f6d5137d5aae4ee4fa427239 (diff) | |
download | emacs-8f148852e189a9c126469173d42f7ef05bad13ac.tar.gz |
(report-calc-bug): Use reporter.el.
Diffstat (limited to 'lisp/calc/calc-misc.el')
-rw-r--r-- | lisp/calc/calc-misc.el | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el index 08ca3fe3190..c9819d1ea65 100644 --- a/lisp/calc/calc-misc.el +++ b/lisp/calc/calc-misc.el @@ -797,19 +797,18 @@ loaded and the keystroke automatically re-typed." nil))) - - - ;;; Bug reporting (defun report-calc-bug (topic) "Report a bug in Calc, the GNU Emacs calculator. Prompts for bug subject. Leaves you in a mail buffer." (interactive "sBug Subject: ") - (mail nil calc-bug-address topic) - (goto-char (point-max)) - (insert "\nIn Calc " calc-version ", Emacs " (emacs-version) "\n\n") - (message (substitute-command-keys "Type \\[mail-send] to send bug report"))) + (reporter-submit-bug-report calc-bug-address "Calc" '(calc-version) + nil nil +"Please describe exactly what actions triggered the bug and the +precise symptoms of the bug. If possible, include a backtrace by +doing 'M-x toggle-debug-on-error', then reproducing the bug. +" )) (defalias 'calc-report-bug 'report-calc-bug) ;;; calc-misc.el ends here |