]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 623ab6b1dc7d481f388a42569ea4f9f7092095c5..09ca47a1f9699a32d07965e4180c626457d98309 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;
 }