aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorPaul Eggert2012-08-27 10:23:48 -0700
committerPaul Eggert2012-08-27 10:23:48 -0700
commitde1339b0a8a5b6b8bf784c816b2b974f4610e3ac (patch)
tree2a77a2ce1b781f5cf30c734e9b0919a6ff3264ec /src/process.h
parentf10fe38f772c29031a23ef7aa92d2de1b3675461 (diff)
downloademacs-de1339b0a8a5b6b8bf784c816b2b974f4610e3ac.tar.gz
emacs-de1339b0a8a5b6b8bf784c816b2b974f4610e3ac.zip
* composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
* composite.c (find_composition, composition_gstring_p) (composition_reseat_it, find_automatic_composition): * data.c (let_shadows_buffer_binding_p) (let_shadows_global_binding_p, set_internal, make_blv) (Fmake_variable_buffer_local, Fmake_local_variable) (Fmake_variable_frame_local, arithcompare, cons_to_unsigned) (cons_to_signed, arith_driver): * dbusbind.c (xd_in_read_queued_messages): * dired.c (directory_files_internal, file_name_completion): Use bool for booleans. * dired.c (file_name_completion): * process.h (fd_callback): Omit int (actually boolean) argument. It wasn't being used. All uses changed. * composite.h, lisp.h: Reflect above API changes.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.h b/src/process.h
index b963f4ca05c..ce3d2e702cc 100644
--- a/src/process.h
+++ b/src/process.h
@@ -219,7 +219,7 @@ extern void hold_keyboard_input (void);
219extern void unhold_keyboard_input (void); 219extern void unhold_keyboard_input (void);
220extern int kbd_on_hold_p (void); 220extern int kbd_on_hold_p (void);
221 221
222typedef void (*fd_callback)(int fd, void *data, int for_read); 222typedef void (*fd_callback) (int fd, void *data);
223 223
224extern void add_read_fd (int fd, fd_callback func, void *data); 224extern void add_read_fd (int fd, fd_callback func, void *data);
225extern void delete_read_fd (int fd); 225extern void delete_read_fd (int fd);