diff options
| author | Paul Eggert | 2018-07-19 22:03:34 -0700 |
|---|---|---|
| committer | Paul Eggert | 2018-07-19 22:05:27 -0700 |
| commit | fb24ce37d1bc258cfc3884d9828aa0602fa06e1d (patch) | |
| tree | 2c0669e13f1324d78b9a0e2de496fc366016ef12 /src/process.c | |
| parent | 96d77f9eb882b68e994e187ed9c2156a23e3279d (diff) | |
| download | emacs-fb24ce37d1bc258cfc3884d9828aa0602fa06e1d.tar.gz emacs-fb24ce37d1bc258cfc3884d9828aa0602fa06e1d.zip | |
Prefer NILP (x) to EQ (x, Qnil)
This simplifies the code a bit, and also simplifies some
potential future changes slightly (e.g., altering eq vs eql).
* src/alloc.c (mark_object):
* src/callint.c (fix_command):
* src/chartab.c (Fchar_table_range, Fset_char_table_range):
* src/dbusbind.c (XD_OBJECT_TO_DBUS_TYPE, xd_signature):
* src/dired.c (Fsystem_users):
* src/fileio.c (Fdo_auto_save):
* src/fns.c (concat):
* src/frame.c (get_frame_param, frame_inhibit_resize)
(store_in_alist, store_frame_param, x_set_autoraise)
(x_set_autolower, x_get_arg):
* src/image.c (Fclear_image_cache):
* src/intervals.c (intervals_equal):
* src/intervals.h (DEFAULT_INTERVAL_P):
* src/lread.c (substitute_object_recurse):
* src/menu.c (digest_single_submenu)
(find_and_call_menu_selection)
(find_and_return_menu_selection):
* src/nsfns.m (x_set_icon_name, Fx_create_frame):
* src/nsmenu.m (ns_menu_show):
* src/nsselect.m (ns_string_to_pasteboard_internal)
(Fns_selection_exists_p, Fns_selection_owner_p):
* src/process.c (Faccept_process_output)
(wait_reading_process_output):
* src/terminal.c (store_terminal_param):
* src/textprop.c (verify_interval_modification):
* src/xdisp.c (next_element_from_buffer):
* src/xfaces.c (Finternal_set_lisp_face_attribute):
* src/xfns.c (x_set_icon_type, Fx_synchronize):
* src/xmenu.c (x_menu_show):
* src/xselect.c (Fx_selection_owner_p)
(Fx_selection_exists_p):
* src/xwidget.c (xwidget_view_lookup):
Prefer NILP (x) to EQ (x, Qnil).
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 3fccd962da6..06324641346 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4608,7 +4608,7 @@ is nil, from any process) before the timeout expired. */) | |||
| 4608 | 4608 | ||
| 4609 | /* Can't wait for a process that is dedicated to a different | 4609 | /* Can't wait for a process that is dedicated to a different |
| 4610 | thread. */ | 4610 | thread. */ |
| 4611 | if (!EQ (proc->thread, Qnil) && !EQ (proc->thread, Fcurrent_thread ())) | 4611 | if (!NILP (proc->thread) && !EQ (proc->thread, Fcurrent_thread ())) |
| 4612 | { | 4612 | { |
| 4613 | Lisp_Object proc_thread_name = XTHREAD (proc->thread)->name; | 4613 | Lisp_Object proc_thread_name = XTHREAD (proc->thread)->name; |
| 4614 | 4614 | ||
| @@ -5015,7 +5015,7 @@ wait_reading_process_output (intmax_t time_limit, int nsecs, int read_kbd, | |||
| 5015 | struct timespec now = invalid_timespec (); | 5015 | struct timespec now = invalid_timespec (); |
| 5016 | 5016 | ||
| 5017 | eassert (wait_proc == NULL | 5017 | eassert (wait_proc == NULL |
| 5018 | || EQ (wait_proc->thread, Qnil) | 5018 | || NILP (wait_proc->thread) |
| 5019 | || XTHREAD (wait_proc->thread) == current_thread); | 5019 | || XTHREAD (wait_proc->thread) == current_thread); |
| 5020 | 5020 | ||
| 5021 | FD_ZERO (&Available); | 5021 | FD_ZERO (&Available); |