Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6f8a2742
Commit
6f8a2742
authored
Nov 23, 2004
by
Jan Djärv
Browse files
* mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
and x-server-version may throw.
parent
5f11b513
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/mail/emacsbug.el
lisp/mail/emacsbug.el
+4
-2
No files found.
lisp/ChangeLog
View file @
6f8a2742
2004-11-23 Jan Dj,Ad(Brv
<jan.h.d
@
swipnet.se
>
* mail/emacsbug.el (report-emacs-bug): Catch error that x-server-vendor
and x-server-version may throw.
2004-11-23 Kim F. Storm
<storm
@
cua.dk
>
* subr.el (substitute-key-definition-key): Optimize. Don't
...
...
lisp/mail/emacsbug.el
View file @
6f8a2742
...
...
@@ -129,8 +129,10 @@ usually do not have translators to read other languages for them.\n\n")
(
insert
"In "
(
emacs-version
)
"\n"
)
(
if
(
fboundp
'x-server-vendor
)
(
insert
"Distributor `"
(
x-server-vendor
)
"', version "
(
mapconcat
'number-to-string
(
x-server-version
)
"."
)
"\n"
))
(
condition-case
nil
(
insert
"Distributor `"
(
x-server-vendor
)
"', version "
(
mapconcat
'number-to-string
(
x-server-version
)
"."
)
"\n"
)
(
error
t
)))
(
if
(
and
system-configuration-options
(
not
(
equal
system-configuration-options
""
)))
(
insert
"configured using `configure "
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment