diff options
author | Andrea Corallo <akrl@sdf.org> | 2022-01-26 12:19:59 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2022-01-26 12:59:10 +0100 |
commit | 1200e55b6f359c2ba71138d5b0a2093ef163d805 (patch) | |
tree | 05f4b2a794df349ebb3460f095684382f301e12a /src/cygw32.c | |
parent | a2eb83d037b36f43a124426a120af432b94b5b4e (diff) | |
download | emacs-1200e55b6f359c2ba71138d5b0a2093ef163d805.tar.gz emacs-1200e55b6f359c2ba71138d5b0a2093ef163d805.tar.bz2 emacs-1200e55b6f359c2ba71138d5b0a2093ef163d805.zip |
Make use of NILP where possible
* src/w32menu.c (menubar_selection_callback, w32_menu_show): Use NILP
where possible.
* src/w32fns.c (w32_set_mouse_color): Likewise.
* src/w16select.c (Fw16_selection_exists_p): Likewise.
* src/process.c (Fnetwork_lookup_address_info): Likewise.
* src/cygw32.c (Fcygwin_convert_file_name_to_windows)
(Fcygwin_convert_file_name_from_windows): Likewise.
Diffstat (limited to 'src/cygw32.c')
-rw-r--r-- | src/cygw32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cygw32.c b/src/cygw32.c index 1b43de2c05e..399c1f91b94 100644 --- a/src/cygw32.c +++ b/src/cygw32.c @@ -115,7 +115,7 @@ For the reverse operation, see `cygwin-convert-file-name-from-windows'. */) (Lisp_Object file, Lisp_Object absolute_p) { return from_unicode ( - conv_filename_to_w32_unicode (file, EQ (absolute_p, Qnil) ? 0 : 1)); + conv_filename_to_w32_unicode (file, NILP (absolute_p) ? 0 : 1)); } DEFUN ("cygwin-convert-file-name-from-windows", @@ -128,7 +128,7 @@ For the reverse operation, see `cygwin-convert-file-name-to-windows'. */) (Lisp_Object file, Lisp_Object absolute_p) { return conv_filename_from_w32_unicode (to_unicode (file, &file), - EQ (absolute_p, Qnil) ? 0 : 1); + NILP (absolute_p) ? 0 : 1); } void |