From: Raffael Stocker Date: Sat, 13 Jul 2024 11:26:23 +0000 (+0200) Subject: ; * src/w32fns.c (Fw32_notification_close): Fix typo (bug#72091). X-Git-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~706 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a6c78ccf5f297e612ff0f2159a7bed3a70637168;p=emacs.git ; * src/w32fns.c (Fw32_notification_close): Fix typo (bug#72091). --- diff --git a/src/w32fns.c b/src/w32fns.c index 7fc2f598b3e..e5798fdd84f 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -10472,7 +10472,7 @@ DEFUN ("w32-notification-close", { struct frame *f = SELECTED_FRAME (); - if (FIXNUMP (id) && !pfnShell_NotifyIconW) + if (FIXNUMP (id) && pfnShell_NotifyIconW) delete_tray_notification (f, XFIXNUM (id)); return Qnil;