changeset 41363:f17cae9ea728

(report-calc-bug): Use reporter.el.
author Colin Walters <walters@gnu.org>
date Thu, 22 Nov 2001 07:58:35 +0000
parents 73c81f0d57f2
children fa98270131de
files lisp/calc/calc-misc.el
diffstat 1 files changed, 6 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/calc/calc-misc.el	Thu Nov 22 07:58:13 2001 +0000
+++ b/lisp/calc/calc-misc.el	Thu Nov 22 07:58:35 2001 +0000
@@ -797,19 +797,18 @@
       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