]> git.eshelyaron.com Git - emacs.git/commitdiff
(report-emacs-bug): Don't hard code the "X" name.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 11 Mar 2007 01:29:50 +0000 (01:29 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 11 Mar 2007 01:29:50 +0000 (01:29 +0000)
lisp/ChangeLog
lisp/mail/emacsbug.el

index 110b94186ccfe210133da276ba5db936c970b89e..9c572fa206378f786d8c62f055f52ece2cdedeb8 100644 (file)
@@ -1,3 +1,7 @@
+2007-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * mail/emacsbug.el (report-emacs-bug): Don't hard code the "X" name.
+
 2007-03-10  Chong Yidong  <cyd@stupidchicken.com>
 
        * faces.el (face-set-after-frame-default): Recalculate face
index cbe14052e19b244bf5bf84f72e7f16b417a7730a..c60d93b26b1103a114b42b3d0468153e6fbdaa4f 100644 (file)
@@ -139,7 +139,9 @@ usually do not have translators to read other languages for them.\n\n")
     (insert "\n\nIn " (emacs-version) "\n")
     (if (fboundp 'x-server-vendor)
        (condition-case nil
-           (insert "X server distributor `" (x-server-vendor) "', version "
+            ;; This is used not only for X11 but also W32 and others.
+           (insert "Windowing system distributor `" (x-server-vendor)
+                    "', version "
                    (mapconcat 'number-to-string (x-server-version) ".") "\n")
          (error t)))
     (if (and system-configuration-options
@@ -281,5 +283,5 @@ and send the mail again using \\[mail-send-and-exit].")))
 
 (provide 'emacsbug)
 
-;;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49
+;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49
 ;;; emacsbug.el ends here