diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-08 17:46:48 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-08-08 17:47:07 +0200 |
commit | c0c5f43f49d429ec63ea73df1f1886f84596cb0a (patch) | |
tree | 422d88c473fa5e4cb7bb4830b2fb9a2421da7bee /src | |
parent | 27e1568967bd571e4e3da31f78ff3bb912865bc9 (diff) | |
download | emacs-c0c5f43f49d429ec63ea73df1f1886f84596cb0a.tar.gz emacs-c0c5f43f49d429ec63ea73df1f1886f84596cb0a.tar.bz2 emacs-c0c5f43f49d429ec63ea73df1f1886f84596cb0a.zip |
Clean up fix_command code slightly
* src/callint.c (fix_command): Remove superfluous check.
Diffstat (limited to 'src')
-rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |