]> git.eshelyaron.com Git - emacs.git/commitdiff
Clean up fix_command code slightly
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 8 Aug 2022 15:46:48 +0000 (17:46 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 8 Aug 2022 15:47:07 +0000 (17:47 +0200)
* src/callint.c (fix_command): Remove superfluous check.

src/callint.c

index e670c8f638b6c60f7d05b19197a2884355de8d0e..c974967459c076fa3f0baf05d308482ae0d63626 100644 (file)
@@ -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;