aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/inotify.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inotify.c b/src/inotify.c
index 247d9f03055..f50b9ddcaa7 100644
--- a/src/inotify.c
+++ b/src/inotify.c
@@ -517,12 +517,14 @@ it invalid. */)
517#ifdef INOTIFY_DEBUG 517#ifdef INOTIFY_DEBUG
518DEFUN ("inotify-watch-list", Finotify_watch_list, Sinotify_watch_list, 0, 0, 0, 518DEFUN ("inotify-watch-list", Finotify_watch_list, Sinotify_watch_list, 0, 0, 0,
519 doc: /* Return a copy of the internal watch_list. */) 519 doc: /* Return a copy of the internal watch_list. */)
520 (void)
520{ 521{
521 return Fcopy_sequence (watch_list); 522 return Fcopy_sequence (watch_list);
522} 523}
523 524
524DEFUN ("inotify-allocated-p", Finotify_allocated_p, Sinotify_allocated_p, 0, 0, 0, 525DEFUN ("inotify-allocated-p", Finotify_allocated_p, Sinotify_allocated_p, 0, 0, 0,
525 doc: /* Return non-nil, if an inotify instance is allocated. */) 526 doc: /* Return non-nil, if an inotify instance is allocated. */)
527 (void)
526{ 528{
527 return inotifyfd < 0 ? Qnil : Qt; 529 return inotifyfd < 0 ? Qnil : Qt;
528} 530}