pinosaur
/
dmenu.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43b0c2c
)
improve xopenim error message
author
Hiltjo Posthuma
<hiltjo@codemadness.org>
Tue, 12 Feb 2019 21:58:35 +0000
(22:58 +0100)
committer
Hiltjo Posthuma
<hiltjo@codemadness.org>
Tue, 12 Feb 2019 21:58:35 +0000
(22:58 +0100)
die() already prints a newline.
dmenu.c
patch
|
blob
|
history
diff --git
a/dmenu.c
b/dmenu.c
index
ae56f4f
..
3bfd74d
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-671,7
+671,7
@@
setup(void)
if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL) {
XSetLocaleModifiers("@im=");
if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL)
- die("XOpenIM failed
. Could not open input device.\n
");
+ die("XOpenIM failed
: could not open input device
");
}
}