emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 478d9d9: * src/w32notify.c (Fw32notify_add_watch):


From: Juanma Barranquero
Subject: [Emacs-diffs] master 478d9d9: * src/w32notify.c (Fw32notify_add_watch): Fix version check.
Date: Sat, 24 Oct 2015 22:00:50 +0000

branch: master
commit 478d9d9db39af654abdfeb793f2d9c2ecb71daf1
Author: Juanma Barranquero <address@hidden>
Commit: Juanma Barranquero <address@hidden>

    * src/w32notify.c (Fw32notify_add_watch): Fix version check.
---
 src/w32notify.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/w32notify.c b/src/w32notify.c
index e822d95..de27ab8 100644
--- a/src/w32notify.c
+++ b/src/w32notify.c
@@ -525,7 +525,7 @@ generate notifications correctly, though.  */)
 
   /* The underlying features are available only since XP.  */
   if (os_subtype == OS_9X
-      || (w32_major_version == 5 && w32_major_version < 1))
+      || (w32_major_version == 5 && w32_minor_version < 1))
     {
       errno = ENOSYS;
       report_file_notify_error ("Watching filesystem events is not supported",



reply via email to

[Prev in Thread] Current Thread [Next in Thread]