diff options
| author | Jan Djärv | 2004-10-28 07:37:02 +0000 |
|---|---|---|
| committer | Jan Djärv | 2004-10-28 07:37:02 +0000 |
| commit | f4982064348329e9d22e68ee7d057d58b99f10fb (patch) | |
| tree | 2b506419f807e538289aec0df610bc6b34d5b7df | |
| parent | 4f71c13ffd2410fab63070fd01cc27c438d98165 (diff) | |
| download | emacs-f4982064348329e9d22e68ee7d057d58b99f10fb.tar.gz emacs-f4982064348329e9d22e68ee7d057d58b99f10fb.zip | |
* mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor
and x-server-version in bug report.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/mail/emacsbug.el | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d731c8a9daa..072a498ed70 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-10-28 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * mail/emacsbug.el (report-emacs-bug): Insert x-server-vendor | ||
| 4 | and x-server-version in bug report. | ||
| 5 | |||
| 1 | 2004-10-28 Daniel Pfeiffer <occitan@esperanto.org> | 6 | 2004-10-28 Daniel Pfeiffer <occitan@esperanto.org> |
| 2 | 7 | ||
| 3 | * files.el (set-auto-mode-0): New function. | 8 | * files.el (set-auto-mode-0): New function. |
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index e93f76c3042..c5579b3c0db 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el | |||
| @@ -128,6 +128,9 @@ usually do not have translators to read other languages for them.\n\n") | |||
| 128 | (insert "\n\n\n") | 128 | (insert "\n\n\n") |
| 129 | 129 | ||
| 130 | (insert "In " (emacs-version) "\n") | 130 | (insert "In " (emacs-version) "\n") |
| 131 | (if (fboundp 'x-server-vendor) | ||
| 132 | (insert "Distributor `" (x-server-vendor) "', version " | ||
| 133 | (mapconcat 'number-to-string (x-server-version) ".") "\n")) | ||
| 131 | (if (and system-configuration-options | 134 | (if (and system-configuration-options |
| 132 | (not (equal system-configuration-options ""))) | 135 | (not (equal system-configuration-options ""))) |
| 133 | (insert "configured using `configure " | 136 | (insert "configured using `configure " |