From 3a80c0aa96c20eb0176fc677db6fc12c4b90356b Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 28 Apr 1998 09:27:02 +0000 Subject: [PATCH] (Fset_process_inherit_coding_system_flag): Fix test for non-nil FLAG. --- src/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process.c b/src/process.c index 623ab6b1dc7..09ca47a1f96 100644 --- a/src/process.c +++ b/src/process.c @@ -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; } -- 2.39.5