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
a85a468e
Commit
a85a468e
authored
Mar 17, 1996
by
Richard M. Stallman
Browse files
(report-emacs-bug): Use a different address for pretest versions.
parent
36990caa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
lisp/mail/emacsbug.el
lisp/mail/emacsbug.el
+11
-2
No files found.
lisp/mail/emacsbug.el
View file @
a85a468e
...
...
@@ -38,7 +38,10 @@
(
require
'sendmail
)
(
defvar
bug-gnu-emacs
"bug-gnu-emacs@prep.ai.mit.edu"
"Address of site maintaining mailing list for GNU Emacs bugs."
)
"Address of mailing list for GNU Emacs bugs."
)
(
defvar
report-emacs-bug-pretest-address
"emacs-pretest-bug@gnu.ai.mit.edu"
"Address of mailing list for GNU Emacs pretest bugs."
)
(
defvar
report-emacs-bug-orig-text
nil
"The automatically-created initial text of bug report."
)
...
...
@@ -48,7 +51,13 @@
"Report a bug in GNU Emacs.
Prompts for bug subject. Leaves you in a mail buffer."
(
interactive
"sBug Subject: "
)
(
if
(
mail
nil
bug-gnu-emacs
topic
)
(
if
(
mail
nil
(
if
(
string-match
"\\..*\\..*\\."
emacs-version
)
;; If there are four numbers in emacs-version,
;; this is a pretest version.
report-emacs-bug-pretest-address
bug-gnu-emacs
)
topic
)
(
let
(
user-point
)
;; The rest of this does not execute
;; if the user was asked to confirm and said no.
...
...
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