projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eaa198c
)
* src/xterm.c (handle_one_xevent): Fix int/Lisp_Object mix-up.
author
Glenn Morris
<rgm@gnu.org>
Wed, 4 May 2022 14:48:22 +0000
(07:48 -0700)
committer
Glenn Morris
<rgm@gnu.org>
Wed, 4 May 2022 14:48:22 +0000
(07:48 -0700)
; Flagged by --enable-check-lisp-object-type
src/xterm.c
patch
|
blob
|
history
diff --git
a/src/xterm.c
b/src/xterm.c
index 01832d60c9ee604e86c824d0c35345ef7cdefedb..0625b03ea023fb955425268373aa6256bb34b1b1 100644
(file)
--- a/
src/xterm.c
+++ b/
src/xterm.c
@@
-17192,7
+17192,7
@@
handle_one_xevent (struct x_display_info *dpyinfo,
XSETFRAME (inev.ie.frame_or_window, f);
}
- if (source &&
source->name
)
+ if (source &&
!NILP (source->name)
)
inev.ie.device = source->name;
goto XI_OTHER;