]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some unnecessary #ifdef directives
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 23 Apr 2019 20:51:07 +0000 (13:51 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 23 Apr 2019 20:51:57 +0000 (13:51 -0700)
These directives are in files that are compiled only if the
symbols are defined.
* src/gfilenotify.c: Remove unnecessary ‘#ifdef HAVE_GFILENOTIFY’.
* src/inotify.c: Remove unnecessary ‘#ifdef HAVE_INOTIFY’.
* src/kqueue.c: Remove unnecessary ‘#ifdef HAVE_KQUEUE’.

src/gfilenotify.c
src/inotify.c
src/kqueue.c

index a9f33c99004a26e64db10cbf0f8ee706bea66166..ddb19770c3c7c9da375529df31cf8cefa3f09bb3 100644 (file)
@@ -18,7 +18,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#ifdef HAVE_GFILENOTIFY
 #include <stdio.h>
 #include <gio/gio.h>
 #include "lisp.h"
@@ -333,7 +332,4 @@ syms_of_gfilenotify (void)
   staticpro (&watch_list);
 
   Fprovide (intern_c_string ("gfilenotify"), Qnil);
-
 }
-
-#endif /* HAVE_GFILENOTIFY  */
index ecbe31c1682ca2ee7d3975dafe2ee330733e0ce9..9a7dbb8f413d1814a4a0edb310314829fa59f9bd 100644 (file)
@@ -19,8 +19,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#ifdef HAVE_INOTIFY
-
 #include "lisp.h"
 #include "coding.h"
 #include "process.h"
@@ -550,5 +548,3 @@ syms_of_inotify (void)
 
   Fprovide (intern_c_string ("inotify"), Qnil);
 }
-
-#endif /* HAVE_INOTIFY */
index 48121bd663aae5f12ad099b65dda89584bf5bafb..42391f84677871a2f520a128147ac712006af0b4 100644 (file)
@@ -19,7 +19,6 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
-#ifdef HAVE_KQUEUE
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/event.h>
@@ -533,8 +532,6 @@ syms_of_kqueue (void)
   Fprovide (intern_c_string ("kqueue"), Qnil);
 }
 
-#endif /* HAVE_KQUEUE  */
-
 /* PROBLEMS
    * https://bugs.launchpad.net/ubuntu/+source/libkqueue/+bug/1514837
      prevents tests on Ubuntu.  */