From afb55b714b0ec8e98e100a167f7b8835baed6fd6 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 22 Nov 2001 20:34:30 +0000 Subject: [PATCH] (report-calc-bug): Use `reporter-prompt-for-summary-p'. --- lisp/calc/calc-misc.el | 13 +++++++------ 1 file 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 -- 2.39.2