projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27e1568
)
Clean up fix_command code slightly
author
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 8 Aug 2022 15:46:48 +0000
(17:46 +0200)
committer
Lars 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
patch
|
blob
|
history
diff --git
a/src/callint.c
b/src/callint.c
index e670c8f638b6c60f7d05b19197a2884355de8d0e..c974967459c076fa3f0baf05d308482ae0d63626 100644
(file)
--- 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;