changeset 9426:4dd2d351ea53

(sys_subshell): Use NILP macro directly, not its expansion. Previous code was leftover from when NULL was a bad word.
author Karl Heuer <kwzh@gnu.org>
date Tue, 11 Oct 1994 01:47:06 +0000
parents 7d0509b6f039
children 3181c9270f40
files src/sysdep.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Tue Oct 11 00:35:42 1994 +0000
+++ b/src/sysdep.c	Tue Oct 11 01:47:06 1994 +0000
@@ -677,8 +677,7 @@
      which somehow wedges the hp compiler.  So instead...  */
 
   dir = intern ("default-directory");
-  /* Can't use NILP */
-  if (XFASTINT (Fboundp (dir)) == XFASTINT (Qnil))
+  if (NILP (Fboundp (dir)))
     goto xyzzy;
   dir = Fsymbol_value (dir);
   if (!STRINGP (dir))