Mercurial > emacs
changeset 76450:a3474cbaf397
(report-emacs-bug): Don't hard code the "X" name.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 11 Mar 2007 01:29:50 +0000 |
parents | 2a29ff806389 |
children | fa556a7af559 |
files | lisp/ChangeLog lisp/mail/emacsbug.el |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Mar 11 01:03:17 2007 +0000 +++ b/lisp/ChangeLog Sun Mar 11 01:29:50 2007 +0000 @@ -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
--- a/lisp/mail/emacsbug.el Sun Mar 11 01:03:17 2007 +0000 +++ b/lisp/mail/emacsbug.el Sun Mar 11 01:29:50 2007 +0000 @@ -139,7 +139,9 @@ (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 @@ (provide 'emacsbug) -;;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49 +;; arch-tag: 248b6523-c3b5-4fec-9a3f-0411fafa7d49 ;;; emacsbug.el ends here