aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2018-09-03 10:28:07 -0700
committerGlenn Morris2018-09-03 10:28:07 -0700
commitddc7c648d2cba328f8812c678fbae23d96dfaf49 (patch)
treeb7468bb85f6ba2b2c8235f42f808b7aa185407f3
parentf9efbb599f9f8b3dc4ef8603cdfcd0c3b4a23a29 (diff)
downloademacs-ddc7c648d2cba328f8812c678fbae23d96dfaf49.tar.gz
emacs-ddc7c648d2cba328f8812c678fbae23d96dfaf49.zip
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.
-rw-r--r--doc/misc/calc.texi15
-rw-r--r--lisp/calc/calc-misc.el16
-rw-r--r--lisp/calc/calc.el4
3 files changed, 9 insertions, 26 deletions
diff --git a/doc/misc/calc.texi b/doc/misc/calc.texi
index 9f821baf60f..5e11d35e90e 100644
--- a/doc/misc/calc.texi
+++ b/doc/misc/calc.texi
@@ -35724,19 +35724,12 @@ The default value of @code{calc-gregorian-switch} is @code{nil}.
35724@appendix Reporting Bugs 35724@appendix Reporting Bugs
35725 35725
35726@noindent 35726@noindent
35727If you find a bug in Calc, send e-mail to Jay Belanger, 35727If you find a bug in Calc, send e-mail to @email{bug-gnu-emacs@@gnu.org}.
35728 35728There is an automatic command @kbd{M-x report-emacs-bug} which helps
35729@example
35730jay.p.belanger@@gmail.com
35731@end example
35732
35733@noindent
35734There is an automatic command @kbd{M-x report-calc-bug} which helps
35735you to report bugs. This command prompts you for a brief subject 35729you to report bugs. This command prompts you for a brief subject
35736line, then leaves you in a mail editing buffer. Type @kbd{C-c C-c} to 35730line, then leaves you in a mail editing buffer. Type @kbd{C-c C-c} to
35737send your mail. Make sure your subject line indicates that you are 35731send your mail. Make sure your subject line indicates that you are
35738reporting a Calc bug; this command sends mail to the maintainer's 35732reporting a Calc bug.
35739regular mailbox.
35740 35733
35741If you have suggestions for additional features for Calc, please send 35734If you have suggestions for additional features for Calc, please send
35742them. Some have dared to suggest that Calc is already top-heavy with 35735them. Some have dared to suggest that Calc is already top-heavy with
@@ -35745,7 +35738,7 @@ them right in.
35745 35738
35746At the front of the source file, @file{calc.el}, is a list of ideas for 35739At the front of the source file, @file{calc.el}, is a list of ideas for
35747future work. If any enthusiastic souls wish to take it upon themselves 35740future work. If any enthusiastic souls wish to take it upon themselves
35748to work on these, please send a message (using @kbd{M-x report-calc-bug}) 35741to work on these, please send a message (using @kbd{M-x report-emacs-bug})
35749so any efforts can be coordinated. 35742so any efforts can be coordinated.
35750 35743
35751The latest version of Calc is available from Savannah, in the Emacs 35744The latest version of Calc is available from Savannah, in the Emacs
diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el
index 29e85104131..6543920d07e 100644
--- a/lisp/calc/calc-misc.el
+++ b/lisp/calc/calc-misc.el
@@ -943,19 +943,9 @@ loaded and the keystroke automatically re-typed."
943;;; Bug reporting 943;;; Bug reporting
944 944
945;;;###autoload 945;;;###autoload
946(defun report-calc-bug () 946(define-obsolete-function-alias 'report-calc-bug 'report-emacs-bug "26.2")
947 "Report a bug in Calc, the GNU Emacs calculator. 947;;;###autoload
948Prompts for bug subject. Leaves you in a mail buffer." 948(define-obsolete-function-alias 'calc-report-bug 'report-emacs-bug "26.2")
949 (interactive)
950 (let ((reporter-prompt-for-summary-p t))
951 (reporter-submit-bug-report calc-bug-address "Calc"
952 nil nil nil
953 "Please describe exactly what actions triggered the bug and the
954precise symptoms of the bug. If possible, include a backtrace by
955doing `\\[toggle-debug-on-error]', then reproducing the bug.
956" )))
957;;;###autoload
958(defalias 'calc-report-bug 'report-calc-bug)
959 949
960(provide 'calc-misc) 950(provide 'calc-misc)
961 951
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 4bebd5f47b7..871e65a2cba 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -486,8 +486,8 @@ to be identified as that note."
486 "Face used to show the selected portion of a formula." 486 "Face used to show the selected portion of a formula."
487 :group 'calc) 487 :group 'calc)
488 488
489(defvar calc-bug-address "emacs-devel@gnu.org" 489(define-obsolete-variable-alias 'calc-bug-address 'report-emacs-bug-address
490 "Address of the maintainer of Calc, for use by `report-calc-bug'.") 490 "26.2")
491 491
492(defvar calc-scan-for-dels t 492(defvar calc-scan-for-dels t
493 "If t, scan keymaps to find all DEL-like keys. 493 "If t, scan keymaps to find all DEL-like keys.