mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-26 10:49:33 +00:00
(report-calc-bug): Use reporter.el.
This commit is contained in:
parent
c6c8cba42e
commit
8f148852e1
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
* calc/calc-misc.el (calc-info): Don't perform voodoo, just
|
* calc/calc-misc.el (calc-info): Don't perform voodoo, just
|
||||||
(info "Calc").
|
(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>
|
2001-11-21 Richard M. Stallman <rms@gnu.org>
|
||||||
|
|
||||||
|
@ -797,19 +797,18 @@ loaded and the keystroke automatically re-typed."
|
|||||||
nil)))
|
nil)))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; Bug reporting
|
;;; Bug reporting
|
||||||
|
|
||||||
(defun report-calc-bug (topic)
|
(defun report-calc-bug (topic)
|
||||||
"Report a bug in Calc, the GNU Emacs calculator.
|
"Report a bug in Calc, the GNU Emacs calculator.
|
||||||
Prompts for bug subject. Leaves you in a mail buffer."
|
Prompts for bug subject. Leaves you in a mail buffer."
|
||||||
(interactive "sBug Subject: ")
|
(interactive "sBug Subject: ")
|
||||||
(mail nil calc-bug-address topic)
|
(reporter-submit-bug-report calc-bug-address "Calc" '(calc-version)
|
||||||
(goto-char (point-max))
|
nil nil
|
||||||
(insert "\nIn Calc " calc-version ", Emacs " (emacs-version) "\n\n")
|
"Please describe exactly what actions triggered the bug and the
|
||||||
(message (substitute-command-keys "Type \\[mail-send] to send bug report")))
|
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)
|
(defalias 'calc-report-bug 'report-calc-bug)
|
||||||
|
|
||||||
;;; calc-misc.el ends here
|
;;; calc-misc.el ends here
|
||||||
|
Loading…
Reference in New Issue
Block a user