]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-calc-bug): Use reporter.el.
authorColin Walters <walters@gnu.org>
Thu, 22 Nov 2001 07:59:01 +0000 (07:59 +0000)
committerColin Walters <walters@gnu.org>
Thu, 22 Nov 2001 07:59:01 +0000 (07:59 +0000)
lisp/ChangeLog
lisp/calc/calc-misc.el

index a7bda516cf2abb2e91b596b5c9ab8177cc2c953f..6427978d4a463827b61760fdf0b76992bccca1c5 100644 (file)
@@ -2,6 +2,9 @@
 
        * calc/calc-misc.el (calc-info): Don't perform voodoo, just
        (info "Calc").
+       (report-calc-bug): Use reporter.el.
+       
+       * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
 
 2001-11-21  Richard M. Stallman  <rms@gnu.org>
 
index 08ca3fe3190de4f2b5d8f6afae124886e7ba50f6..c9819d1ea653bb39d56305a10dd2e06319d9e554 100644 (file)
@@ -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