aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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."
799 799
800;;; Bug reporting 800;;; Bug reporting
801 801
802(defun report-calc-bug (topic) 802(defun report-calc-bug ()
803 "Report a bug in Calc, the GNU Emacs calculator. 803 "Report a bug in Calc, the GNU Emacs calculator.
804Prompts for bug subject. Leaves you in a mail buffer." 804Prompts for bug subject. Leaves you in a mail buffer."
805 (interactive "sBug Subject: ") 805 (interactive)
806 (reporter-submit-bug-report calc-bug-address "Calc" '(calc-version) 806 (let ((reporter-prompt-for-summary-p t))
807 nil nil 807 (reporter-submit-bug-report calc-bug-address "Calc" '(calc-version)
808"Please describe exactly what actions triggered the bug and the 808 nil nil
809 "Please describe exactly what actions triggered the bug and the
809precise symptoms of the bug. If possible, include a backtrace by 810precise symptoms of the bug. If possible, include a backtrace by
810doing 'M-x toggle-debug-on-error', then reproducing the bug. 811doing 'M-x toggle-debug-on-error', then reproducing the bug.
811" )) 812" )))
812(defalias 'calc-report-bug 'report-calc-bug) 813(defalias 'calc-report-bug 'report-calc-bug)
813 814
814;;; calc-misc.el ends here 815;;; calc-misc.el ends here