# HG changeset patch # User Karl Heuer # Date 781840026 0 # Node ID 4dd2d351ea5351a91016b09a5d2777f604952aba # Parent 7d0509b6f039e505ad5edaa421b37170ec9172f2 (sys_subshell): Use NILP macro directly, not its expansion. Previous code was leftover from when NULL was a bad word. diff -r 7d0509b6f039 -r 4dd2d351ea53 src/sysdep.c --- 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))