diff options
| author | Paul Eggert | 2016-11-05 20:41:37 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-11-05 20:42:10 -0700 |
| commit | 84c53436ab25b6c8f76c133e59b34e533ea33cc7 (patch) | |
| tree | 0591d8e26be72e5c36a221c6642c614d43cb8c30 /src/kqueue.c | |
| parent | bb61e50533a4dd1f2f93de1f8ca55d31f9094e6d (diff) | |
| download | emacs-84c53436ab25b6c8f76c133e59b34e533ea33cc7.tar.gz emacs-84c53436ab25b6c8f76c133e59b34e533ea33cc7.zip | |
Prefer comments /* like this */ in C code
Emacs C code assumes C99 features, but has long used traditional
comments /* like this */ instead of C99-style comments // like this.
Stick with traditional comments for now, partly for style, partly as
it may be safer with compilers that are not fully in C99 mode.
Diffstat (limited to 'src/kqueue.c')
| -rw-r--r-- | src/kqueue.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/kqueue.c b/src/kqueue.c index c848b7ff1af..49ca0c95e27 100644 --- a/src/kqueue.c +++ b/src/kqueue.c | |||
| @@ -264,8 +264,6 @@ kqueue_compare_dir_list (Lisp_Object watch_object) | |||
| 264 | report_file_error ("New list not empty", new_dl); | 264 | report_file_error ("New list not empty", new_dl); |
| 265 | if (! NILP (pending_dl)) | 265 | if (! NILP (pending_dl)) |
| 266 | report_file_error ("Pending events list not empty", pending_dl); | 266 | report_file_error ("Pending events list not empty", pending_dl); |
| 267 | // if (! NILP (deleted_dl)) | ||
| 268 | // report_file_error ("Deleted events list not empty", deleted_dl); | ||
| 269 | 267 | ||
| 270 | /* Replace old directory listing with the new one. */ | 268 | /* Replace old directory listing with the new one. */ |
| 271 | XSETCDR (Fnthcdr (make_number (3), watch_object), | 269 | XSETCDR (Fnthcdr (make_number (3), watch_object), |