]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-emacs-bug): Make MS-DOS a special case (there's no build number).
authorMichaël Cadilhac <michael.cadilhac@lrde.org>
Fri, 17 Aug 2007 19:38:58 +0000 (19:38 +0000)
committerMichaël Cadilhac <michael.cadilhac@lrde.org>
Fri, 17 Aug 2007 19:38:58 +0000 (19:38 +0000)
lisp/ChangeLog
lisp/mail/emacsbug.el

index 838aa3709f5734cd63de667efdddc5c6a73157c6..c9452fde9db2fd57073e42defce19850320acd8c 100644 (file)
@@ -7,7 +7,8 @@
 2007-08-17  Micha\e,Ak\e(Bl Cadilhac  <michael@cadilhac.name>
 
        * mail/emacsbug.el (report-emacs-bug): Remove the last number of
-       `emacs-version', use the topic prefix ``version; ''.
+       `emacs-version', use the topic prefix ``version; ''.  Make MS-DOS
+       a special case (there's no build number).
 
 2007-08-17  T. V. Raman  <raman@users.sf.net>  (tiny change)
 
index 89ac6dea0bb7180c655d7847791124e2e1e0e023..70c976a154d3cf75512ad538596d8628907cbebc 100644 (file)
@@ -75,11 +75,16 @@ Prompts for bug subject.  Leaves you in a mail buffer."
   (interactive (reverse (list (recent-keys) (read-string "Bug Subject: "))))
   ;; The syntax `version;' is preferred to `[version]' because the
   ;; latter could be mistakenly stripped by mailing software.
-  (when (string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
-    (setq topic (concat (match-string 1 emacs-version) "; " topic)))
-  ;; If there are four numbers in emacs-version, this is a pretest
-  ;; version.
-  (let* ((pretest-p (string-match "\\..*\\..*\\." emacs-version))
+  (if (eq system-type 'ms-dos)
+      (setq topic (concat emacs-version "; " topic))
+    (when (string-match "^\\(\\([.0-9]+\\)*\\)\\.[0-9]+$" emacs-version)
+      (setq topic (concat (match-string 1 emacs-version) "; " topic))))
+  ;; If there are four numbers in emacs-version (three for MS-DOS),
+  ;; this is a pretest version.
+  (let* ((pretest-p (string-match (if (eq system-type 'ms-dos)
+                                     "\\..*\\."
+                                   "\\..*\\..*\\.")
+                                 emacs-version))
         (from-buffer (current-buffer))
         (reporting-address (if pretest-p
                                report-emacs-bug-pretest-address