diff options
Diffstat (limited to 'src/kqueue.c')
| -rw-r--r-- | src/kqueue.c | 12 |
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 | ||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | 7 | GNU Emacs is free software: you can redistribute it and/or modify |
| 8 | it under the terms of the GNU General Public License as published by | 8 | it under the terms of the GNU General Public License as published by |
| 9 | the Free Software Foundation, either version 3 of the License, or | 9 | the Free Software Foundation, either version 3 of the License, or (at |
| 10 | (at your option) any later version. | 10 | your option) any later version. |
| 11 | 11 | ||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | 12 | GNU Emacs is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 | but 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. */ |
| 73 | static void | 73 | static void |
| 74 | kqueue_generate_event | 74 | kqueue_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. */ |
| 115 | static void | 114 | static void |
| 116 | kqueue_compare_dir_list | 115 | kqueue_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; |