1
Fork 0
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:
Glenn Morris 2022-05-04 07:48:22 -07:00
parent eaa198cd75
commit 34a45de19a

View file

@ -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;