Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f9f9cd92
Commit
f9f9cd92
authored
Apr 20, 1994
by
Karl Heuer
Browse files
(report-emacs-bug): Insert at separator, not at end.
parent
3c6bcbe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
lisp/mail/emacsbug.el
lisp/mail/emacsbug.el
+5
-2
No files found.
lisp/mail/emacsbug.el
View file @
f9f9cd92
...
...
@@ -34,6 +34,8 @@
;; >> otherwise you can't use this file. It will only work on the
;; >> internet with this address.
(
require
'sendmail
)
(
defvar
bug-gnu-emacs
"bug-gnu-emacs@prep.ai.mit.edu"
"Address of site maintaining mailing list for GNU Emacs bugs."
)
...
...
@@ -43,8 +45,9 @@
Prompts for bug subject. Leaves you in a mail buffer."
(
interactive
"sBug Subject: "
)
(
mail
nil
bug-gnu-emacs
topic
)
(
goto-char
(
point-max
))
(
insert
"\nIn "
(
emacs-version
)
"\n\n"
)
(
goto-char
(
point-min
))
(
re-search-forward
(
concat
"^"
(
regexp-quote
mail-header-separator
)
"\n"
))
(
insert
"In "
(
emacs-version
)
"\n\n"
)
(
message
(
substitute-command-keys
"Type \\[mail-send] to send bug report."
)))
(
provide
'emacsbug
)
...
...
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