]> git.eshelyaron.com Git - emacs.git/commitdiff
; * 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)
committerEshel Yaron <me@eshelyaron.com>
Sat, 13 Jul 2024 20:07:39 +0000 (22:07 +0200)
(cherry picked from commit a6c78ccf5f297e612ff0f2159a7bed3a70637168)

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;