summaryrefslogtreecommitdiff
path: root/lisp/mail/emacsbug.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-01-28 21:02:35 +0000
committerRichard M. Stallman <rms@gnu.org>1998-01-28 21:02:35 +0000
commit7b27eb5359d5f3bc19410377147109ad545db959 (patch)
treec249b472fae4186fe4bceaeb1a1cc354645562a1 /lisp/mail/emacsbug.el
parent93aca356d21b38526e56264f2636e1dd11eefef9 (diff)
downloademacs-7b27eb5359d5f3bc19410377147109ad545db959.tar.gz
emacs-7b27eb5359d5f3bc19410377147109ad545db959.tar.bz2
emacs-7b27eb5359d5f3bc19410377147109ad545db959.zip
(report-emacs-bug-address):
Variable renamed from bug-gnu-emacs. Use defcustom. (report-emacs-bug-pretest-address): Use defcustom.
Diffstat (limited to 'lisp/mail/emacsbug.el')
-rw-r--r--lisp/mail/emacsbug.el14
1 files changed, 9 insertions, 5 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 09c9af0bfcd..3383642b845 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -42,11 +42,15 @@
:group 'maint
:group 'mail)
-(defvar bug-gnu-emacs "bug-gnu-emacs@prep.ai.mit.edu"
- "Address of mailing list for GNU Emacs bugs.")
+(defcustom report-emacs-bug-address "bug-gnu-emacs@prep.ai.mit.edu"
+ "*Address of mailing list for GNU Emacs bugs."
+ :group 'emacsbug
+ :type 'string)
-(defvar report-emacs-bug-pretest-address "emacs-pretest-bug@gnu.ai.mit.edu"
- "Address of mailing list for GNU Emacs pretest bugs.")
+(defcustom report-emacs-bug-pretest-address "emacs-pretest-bug@gnu.ai.mit.edu"
+ "*Address of mailing list for GNU Emacs pretest bugs."
+ :group 'emacsbug
+ :type 'string)
(defvar report-emacs-bug-orig-text nil
"The automatically-created initial text of bug report.")
@@ -76,7 +80,7 @@ Prompts for bug subject. Leaves you in a mail buffer."
;; If there are four numbers in emacs-version,
;; this is a pretest version.
report-emacs-bug-pretest-address
- bug-gnu-emacs)
+ report-emacs-bug-address)
topic)
;; The rest of this does not execute
;; if the user was asked to confirm and said no.