mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
Standardize calc bug reporting instructions
* doc/misc/calc.texi (Reporting Bugs): Use standard commands. * lisp/calc/calc-misc.el (report-calc-bug, calc-report-bug): * lisp/calc/calc.el (calc-bug-address): Change to be obsolete aliases for standard Emacs bug reporting items.
This commit is contained in:
parent
f9efbb599f
commit
ddc7c648d2
@ -35724,19 +35724,12 @@ The default value of @code{calc-gregorian-switch} is @code{nil}.
|
|||||||
@appendix Reporting Bugs
|
@appendix Reporting Bugs
|
||||||
|
|
||||||
@noindent
|
@noindent
|
||||||
If you find a bug in Calc, send e-mail to Jay Belanger,
|
If you find a bug in Calc, send e-mail to @email{bug-gnu-emacs@@gnu.org}.
|
||||||
|
There is an automatic command @kbd{M-x report-emacs-bug} which helps
|
||||||
@example
|
|
||||||
jay.p.belanger@@gmail.com
|
|
||||||
@end example
|
|
||||||
|
|
||||||
@noindent
|
|
||||||
There is an automatic command @kbd{M-x report-calc-bug} which helps
|
|
||||||
you to report bugs. This command prompts you for a brief subject
|
you to report bugs. This command prompts you for a brief subject
|
||||||
line, then leaves you in a mail editing buffer. Type @kbd{C-c C-c} to
|
line, then leaves you in a mail editing buffer. Type @kbd{C-c C-c} to
|
||||||
send your mail. Make sure your subject line indicates that you are
|
send your mail. Make sure your subject line indicates that you are
|
||||||
reporting a Calc bug; this command sends mail to the maintainer's
|
reporting a Calc bug.
|
||||||
regular mailbox.
|
|
||||||
|
|
||||||
If you have suggestions for additional features for Calc, please send
|
If you have suggestions for additional features for Calc, please send
|
||||||
them. Some have dared to suggest that Calc is already top-heavy with
|
them. Some have dared to suggest that Calc is already top-heavy with
|
||||||
@ -35745,7 +35738,7 @@ them right in.
|
|||||||
|
|
||||||
At the front of the source file, @file{calc.el}, is a list of ideas for
|
At the front of the source file, @file{calc.el}, is a list of ideas for
|
||||||
future work. If any enthusiastic souls wish to take it upon themselves
|
future work. If any enthusiastic souls wish to take it upon themselves
|
||||||
to work on these, please send a message (using @kbd{M-x report-calc-bug})
|
to work on these, please send a message (using @kbd{M-x report-emacs-bug})
|
||||||
so any efforts can be coordinated.
|
so any efforts can be coordinated.
|
||||||
|
|
||||||
The latest version of Calc is available from Savannah, in the Emacs
|
The latest version of Calc is available from Savannah, in the Emacs
|
||||||
|
@ -943,19 +943,9 @@ loaded and the keystroke automatically re-typed."
|
|||||||
;;; Bug reporting
|
;;; Bug reporting
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun report-calc-bug ()
|
(define-obsolete-function-alias 'report-calc-bug 'report-emacs-bug "26.2")
|
||||||
"Report a bug in Calc, the GNU Emacs calculator.
|
|
||||||
Prompts for bug subject. Leaves you in a mail buffer."
|
|
||||||
(interactive)
|
|
||||||
(let ((reporter-prompt-for-summary-p t))
|
|
||||||
(reporter-submit-bug-report calc-bug-address "Calc"
|
|
||||||
nil nil nil
|
|
||||||
"Please describe exactly what actions triggered the bug and the
|
|
||||||
precise symptoms of the bug. If possible, include a backtrace by
|
|
||||||
doing `\\[toggle-debug-on-error]', then reproducing the bug.
|
|
||||||
" )))
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defalias 'calc-report-bug 'report-calc-bug)
|
(define-obsolete-function-alias 'calc-report-bug 'report-emacs-bug "26.2")
|
||||||
|
|
||||||
(provide 'calc-misc)
|
(provide 'calc-misc)
|
||||||
|
|
||||||
|
@ -486,8 +486,8 @@ to be identified as that note."
|
|||||||
"Face used to show the selected portion of a formula."
|
"Face used to show the selected portion of a formula."
|
||||||
:group 'calc)
|
:group 'calc)
|
||||||
|
|
||||||
(defvar calc-bug-address "emacs-devel@gnu.org"
|
(define-obsolete-variable-alias 'calc-bug-address 'report-emacs-bug-address
|
||||||
"Address of the maintainer of Calc, for use by `report-calc-bug'.")
|
"26.2")
|
||||||
|
|
||||||
(defvar calc-scan-for-dels t
|
(defvar calc-scan-for-dels t
|
||||||
"If t, scan keymaps to find all DEL-like keys.
|
"If t, scan keymaps to find all DEL-like keys.
|
||||||
|
Loading…
Reference in New Issue
Block a user