From c0c5f43f49d429ec63ea73df1f1886f84596cb0a Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Mon, 8 Aug 2022 17:46:48 +0200 Subject: [PATCH] Clean up fix_command code slightly * src/callint.c (fix_command): Remove superfluous check. --- src/callint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callint.c b/src/callint.c index e670c8f638b..c974967459c 100644 --- a/src/callint.c +++ b/src/callint.c @@ -176,7 +176,7 @@ fix_command (Lisp_Object function, Lisp_Object values) Lisp_Object reps = Fget (function, Qinteractive_args); - if (!NILP (reps) && CONSP (reps)) + if (CONSP (reps)) { int i = 0; Lisp_Object vals = values; -- 2.39.2