; * src/w32fns.c (Fw32_notification_close): Fix typo (bug#72091).
authorRaffael Stocker <r.stocker@mnet-mail.de>
Sat, 13 Jul 2024 11:26:23 +0000 (13:26 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 13 Jul 2024 12:19:46 +0000 (15:19 +0300)
src/w32fns.c

index 7fc2f598b3e4007877223125fc73d7e1afcf3602..e5798fdd84f1250ed30dffaf8ea6c608e7003377 100644 (file)
@@ -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;