aboutsummaryrefslogtreecommitdiffstats
path: root/src/kqueue.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kqueue.c')
-rw-r--r--src/kqueue.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/kqueue.c b/src/kqueue.c
index 7e3bfdd5746..f45bd0c4c24 100644
--- a/src/kqueue.c
+++ b/src/kqueue.c
@@ -6,8 +6,8 @@ This file is part of GNU Emacs.
6 6
7GNU Emacs is free software: you can redistribute it and/or modify 7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by 8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or 9the Free Software Foundation, either version 3 of the License, or (at
10(at your option) any later version. 10your option) any later version.
11 11
12GNU Emacs is distributed in the hope that it will be useful, 12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of 13but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -71,9 +71,8 @@ kqueue_directory_listing (Lisp_Object directory_files)
71 71
72/* Generate a file notification event. */ 72/* Generate a file notification event. */
73static void 73static void
74kqueue_generate_event 74kqueue_generate_event (Lisp_Object watch_object, Lisp_Object actions,
75(Lisp_Object watch_object, Lisp_Object actions, 75 Lisp_Object file, Lisp_Object file1)
76 Lisp_Object file, Lisp_Object file1)
77{ 76{
78 Lisp_Object flags, action, entry; 77 Lisp_Object flags, action, entry;
79 struct input_event event; 78 struct input_event event;
@@ -113,8 +112,7 @@ kqueue_generate_event
113 replaced by the new directory listing at the end of this 112 replaced by the new directory listing at the end of this
114 function. */ 113 function. */
115static void 114static void
116kqueue_compare_dir_list 115kqueue_compare_dir_list (Lisp_Object watch_object)
117(Lisp_Object watch_object)
118{ 116{
119 Lisp_Object dir, pending_dl, deleted_dl; 117 Lisp_Object dir, pending_dl, deleted_dl;
120 Lisp_Object old_directory_files, old_dl, new_directory_files, new_dl, dl; 118 Lisp_Object old_directory_files, old_dl, new_directory_files, new_dl, dl;