summaryrefslogtreecommitdiff
path: root/src/w16select.c
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2022-01-26 12:19:59 +0100
committerAndrea Corallo <akrl@sdf.org>2022-01-26 12:59:10 +0100
commit1200e55b6f359c2ba71138d5b0a2093ef163d805 (patch)
tree05f4b2a794df349ebb3460f095684382f301e12a /src/w16select.c
parenta2eb83d037b36f43a124426a120af432b94b5b4e (diff)
downloademacs-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/w16select.c')
-rw-r--r--src/w16select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w16select.c b/src/w16select.c
index f6bc3dd8d47..b878481e469 100644
--- a/src/w16select.c
+++ b/src/w16select.c
@@ -651,7 +651,7 @@ frame's display, or the first available X display. */)
by the X interface code. (On MSDOS, killed text is only put
into the clipboard if we run under Windows, so we cannot check
the clipboard alone.) */
- if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY))
+ if ((NILP (selection) || EQ (selection, QPRIMARY))
&& ! NILP (Fsymbol_value (Fintern_soft (build_string ("kill-ring"),
Qnil))))
return Qt;