Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
afb55b71
Commit
afb55b71
authored
Nov 22, 2001
by
Colin Walters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(report-calc-bug): Use `reporter-prompt-for-summary-p'.
parent
a6f564e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
lisp/calc/calc-misc.el
lisp/calc/calc-misc.el
+7
-6
No files found.
lisp/calc/calc-misc.el
View file @
afb55b71
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment