# HG changeset patch # User Richard M. Stallman # Date 886021355 0 # Node ID 5941b5298627fc7fdcf5dc6633d2a0860dc69ad6 # Parent 2d662878358c37391788a15c5a52ee2001cf4a25 (report-emacs-bug-address): Variable renamed from bug-gnu-emacs. Use defcustom. (report-emacs-bug-pretest-address): Use defcustom. diff -r 2d662878358c -r 5941b5298627 lisp/mail/emacsbug.el --- a/lisp/mail/emacsbug.el Wed Jan 28 18:01:29 1998 +0000 +++ b/lisp/mail/emacsbug.el Wed Jan 28 21:02:35 1998 +0000 @@ -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 @@ ;; 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.