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
8ab5d35a
Commit
8ab5d35a
authored
Jan 24, 2001
by
Eli Zaretskii
Browse files
(report-emacs-bug): Mention the fact that the
bug report is mailed to an email list and posted to a news group.
parent
e7e41584
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
lisp/mail/emacsbug.el
lisp/mail/emacsbug.el
+13
-5
No files found.
lisp/mail/emacsbug.el
View file @
8ab5d35a
...
...
@@ -72,13 +72,14 @@ Prompts for bug subject. Leaves you in a mail buffer."
;; This strange form ensures that (recent-keys) is the value before
;; the bug subject string is read.
(
interactive
(
reverse
(
list
(
recent-keys
)
(
read-string
"Bug Subject: "
))))
(
let
(
user-point
message-end-point
)
;; If there are four numbers in emacs-version, this is a pretest
;; version.
(
let
((
pretest-p
(
string-match
"\\..*\\..*\\."
emacs-version
))
user-point
message-end-point
)
(
setq
message-end-point
(
with-current-buffer
(
get-buffer
"*Messages*"
)
(
point-max-marker
)))
(
compose-mail
(
if
(
string-match
"\\..*\\..*\\."
emacs-version
)
;; If there are four numbers in emacs-version,
;; this is a pretest version.
(
compose-mail
(
if
pretest-p
report-emacs-bug-pretest-address
report-emacs-bug-address
)
topic
)
...
...
@@ -104,7 +105,14 @@ Prompts for bug subject. Leaves you in a mail buffer."
(
insert
"English"
)
(
put-text-property
pos
(
point
)
'face
'highlight
))
(
insert
", because the Emacs maintainers do not have
translators to read other languages for them.\n\n"
))
translators to read other languages for them.\n\n"
)
(
insert
(
format
"Your bug report will be posted to the %s mailing list"
(
if
pretest-p
report-emacs-bug-pretest-address
report-emacs-bug-address
)))
(
if
pretest-p
(
insert
".\n\n"
)
(
insert
",\nand to the gnu.emacs.bug news group.\n\n"
)))
(
insert
"In "
(
emacs-version
)
"\n"
)
(
if
(
and
system-configuration-options
...
...
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