]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-emacs-bug): Use a different address for pretest versions.
authorRichard M. Stallman <rms@gnu.org>
Sun, 17 Mar 1996 15:32:00 +0000 (15:32 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 17 Mar 1996 15:32:00 +0000 (15:32 +0000)
lisp/mail/emacsbug.el

index 520763e245afb42bcbf47768a7181db22b110eec..2f2a991419b73be045e2509290b4ab933bb4a561 100644 (file)
 (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.")
   "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.