mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-23 04:53:12 -08:00
* src/xterm.c (handle_one_xevent): Fix int/Lisp_Object mix-up.
; Flagged by --enable-check-lisp-object-type
This commit is contained in:
parent
eaa198cd75
commit
34a45de19a
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue