summaryrefslogtreecommitdiff
path: root/lisp/calc
diff options
context:
space:
mode:
authorColin Walters <walters@gnu.org>2001-11-22 20:34:30 +0000
committerColin Walters <walters@gnu.org>2001-11-22 20:34:30 +0000
commitafb55b714b0ec8e98e100a167f7b8835baed6fd6 (patch)
tree360b1cfac72237def4e70911e7d67f1fe3938825 /lisp/calc
parenta6f564e98f9d1a3ebac03e7c33b749478976f1d5 (diff)
downloademacs-afb55b714b0ec8e98e100a167f7b8835baed6fd6.tar.gz
(report-calc-bug): Use `reporter-prompt-for-summary-p'.
Diffstat (limited to 'lisp/calc')
-rw-r--r--lisp/calc/calc-misc.el13
1 files changed, 7 insertions, 6 deletions
diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el
index c9819d1ea65..ad5258d17a7 100644
--- a/lisp/calc/calc-misc.el
+++ b/lisp/calc/calc-misc.el
@@ -799,16 +799,17 @@ loaded and the keystroke automatically re-typed."
;;; Bug reporting
-(defun report-calc-bug (topic)
+(defun report-calc-bug ()
"Report a bug in Calc, the GNU Emacs calculator.
Prompts for bug subject. Leaves you in a mail buffer."
- (interactive "sBug Subject: ")
- (reporter-submit-bug-report calc-bug-address "Calc" '(calc-version)
- nil nil
-"Please describe exactly what actions triggered the bug and the
+ (interactive)
+ (let ((reporter-prompt-for-summary-p t))
+ (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