diff options
| author | Richard M. Stallman | 1998-01-28 21:02:35 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-01-28 21:02:35 +0000 |
| commit | 7b27eb5359d5f3bc19410377147109ad545db959 (patch) | |
| tree | c249b472fae4186fe4bceaeb1a1cc354645562a1 /lisp | |
| parent | 93aca356d21b38526e56264f2636e1dd11eefef9 (diff) | |
| download | emacs-7b27eb5359d5f3bc19410377147109ad545db959.tar.gz 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')
| -rw-r--r-- | lisp/mail/emacsbug.el | 14 |
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 @@ | |||
| 42 | :group 'maint | 42 | :group 'maint |
| 43 | :group 'mail) | 43 | :group 'mail) |
| 44 | 44 | ||
| 45 | (defvar bug-gnu-emacs "bug-gnu-emacs@prep.ai.mit.edu" | 45 | (defcustom report-emacs-bug-address "bug-gnu-emacs@prep.ai.mit.edu" |
| 46 | "Address of mailing list for GNU Emacs bugs.") | 46 | "*Address of mailing list for GNU Emacs bugs." |
| 47 | :group 'emacsbug | ||
| 48 | :type 'string) | ||
| 47 | 49 | ||
| 48 | (defvar report-emacs-bug-pretest-address "emacs-pretest-bug@gnu.ai.mit.edu" | 50 | (defcustom report-emacs-bug-pretest-address "emacs-pretest-bug@gnu.ai.mit.edu" |
| 49 | "Address of mailing list for GNU Emacs pretest bugs.") | 51 | "*Address of mailing list for GNU Emacs pretest bugs." |
| 52 | :group 'emacsbug | ||
| 53 | :type 'string) | ||
| 50 | 54 | ||
| 51 | (defvar report-emacs-bug-orig-text nil | 55 | (defvar report-emacs-bug-orig-text nil |
| 52 | "The automatically-created initial text of bug report.") | 56 | "The automatically-created initial text of bug report.") |
| @@ -76,7 +80,7 @@ Prompts for bug subject. Leaves you in a mail buffer." | |||
| 76 | ;; If there are four numbers in emacs-version, | 80 | ;; If there are four numbers in emacs-version, |
| 77 | ;; this is a pretest version. | 81 | ;; this is a pretest version. |
| 78 | report-emacs-bug-pretest-address | 82 | report-emacs-bug-pretest-address |
| 79 | bug-gnu-emacs) | 83 | report-emacs-bug-address) |
| 80 | topic) | 84 | topic) |
| 81 | ;; The rest of this does not execute | 85 | ;; The rest of this does not execute |
| 82 | ;; if the user was asked to confirm and said no. | 86 | ;; if the user was asked to confirm and said no. |