aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2025-04-22 05:53:35 +0200
committerStefan Kangas2025-04-22 05:53:35 +0200
commit45e849bddc1c7777628d3f42557ddbd8a6ba96b7 (patch)
tree4ac6dc9026395ad1f9509e2b0da2a3588c22e31c
parent649bb9dcd9518a273f99fd56e40d921f6191cb69 (diff)
downloademacs-45e849bddc1c7777628d3f42557ddbd8a6ba96b7.tar.gz
emacs-45e849bddc1c7777628d3f42557ddbd8a6ba96b7.zip
; Fix thinko in recent commit
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 1884e780e34..249916cf954 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -11971,10 +11971,10 @@ x_new_focus_frame (struct x_display_info *dpyinfo, struct frame *frame)
11971{ 11971{
11972 struct frame *old_focus = dpyinfo->x_focus_frame; 11972 struct frame *old_focus = dpyinfo->x_focus_frame;
11973#if defined USE_GTK && !defined HAVE_GTK3 && defined HAVE_XINPUT2 11973#if defined USE_GTK && !defined HAVE_GTK3 && defined HAVE_XINPUT2
11974 XIEventMask mask;
11974 if (dpyinfo->supports_xi2) 11975 if (dpyinfo->supports_xi2)
11975 { 11976 {
11976 ptrdiff_t l = XIMaskLen (XI_LASTEVENT); 11977 ptrdiff_t l = XIMaskLen (XI_LASTEVENT);
11977 XIEventMask mask;
11978 mask.mask = alloca (l); 11978 mask.mask = alloca (l);
11979 mask.mask_len = l; 11979 mask.mask_len = l;
11980 memset (mask.mask, 0, l); 11980 memset (mask.mask, 0, l);