(Fset_process_inherit_coding_system_flag): Fix test for non-nil FLAG.
authorAndreas Schwab <schwab@suse.de>
Tue, 28 Apr 1998 09:27:02 +0000 (09:27 +0000)
committerAndreas Schwab <schwab@suse.de>
Tue, 28 Apr 1998 09:27:02 +0000 (09:27 +0000)
src/process.c

index 623ab6b..09ca47a 100644 (file)
@@ -868,7 +868,7 @@ for the process which will run.")
      register Lisp_Object process, flag;
 {
   CHECK_PROCESS (process, 0);
-  XPROCESS (process)->inherit_coding_system_flag = !Fnull (flag);
+  XPROCESS (process)->inherit_coding_system_flag = !NILP (flag);
   return flag;
 }