aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2007-03-11 01:29:50 +0000
committerStefan Monnier2007-03-11 01:29:50 +0000
commit951c155f39a30fb7e1fab71adb5904c7ab47298d (patch)
tree7a32decafc5acf5e69f3d865ae0bd8e945942aed /lisp
parent520e9259c70f29e87464a3c4ee00226a0029478f (diff)
downloademacs-951c155f39a30fb7e1fab71adb5904c7ab47298d.tar.gz
emacs-951c155f39a30fb7e1fab71adb5904c7ab47298d.zip
(report-emacs-bug): Don't hard code the "X" name.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/mail/emacsbug.el6
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 110b94186cc..9c572fa2063 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * mail/emacsbug.el (report-emacs-bug): Don't hard code the "X" name.
4
12007-03-10 Chong Yidong <cyd@stupidchicken.com> 52007-03-10 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * faces.el (face-set-after-frame-default): Recalculate face 7 * faces.el (face-set-after-frame-default): Recalculate face
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index cbe14052e19..c60d93b26b1 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -139,7 +139,9 @@ usually do not have translators to read other languages for them.\n\n")
139 (insert "\n\nIn " (emacs-version) "\n") 139 (insert "\n\nIn " (emacs-version) "\n")
140 (if (fboundp 'x-server-vendor) 140 (if (fboundp 'x-server-vendor)
141 (condition-case nil 141 (condition-case nil
142 (insert "X server distributor `" (x-server-vendor) "', version " 142 ;; This is used not only for X11 but also W32 and others.
143 (insert "Windowing system distributor `" (x-server-vendor)
144 "', version "
143 (mapconcat 'number-to-string (x-server-version) ".") "\n") 145 (mapconcat 'number-to-string (x-server-version) ".") "\n")
144 (error t))) 146 (error t)))
145 (if (and system-configuration-options 147 (if (and system-configuration-options
@@ -281,5 +283,5 @@ and send the mail again using \\[mail-send-and-exit].")))
281 283
282(provide 'emacsbug) 284(provide 'emacsbug)
283 285
284;;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49 286;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49
285;;; emacsbug.el ends here 287;;; emacsbug.el ends here