diff options
| author | Lars Ingebrigtsen | 2022-08-08 17:46:48 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-08-08 17:47:07 +0200 |
| commit | c0c5f43f49d429ec63ea73df1f1886f84596cb0a (patch) | |
| tree | 422d88c473fa5e4cb7bb4830b2fb9a2421da7bee /src | |
| parent | 27e1568967bd571e4e3da31f78ff3bb912865bc9 (diff) | |
| download | emacs-c0c5f43f49d429ec63ea73df1f1886f84596cb0a.tar.gz 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) | |||
| 176 | 176 | ||
| 177 | Lisp_Object reps = Fget (function, Qinteractive_args); | 177 | Lisp_Object reps = Fget (function, Qinteractive_args); |
| 178 | 178 | ||
| 179 | if (!NILP (reps) && CONSP (reps)) | 179 | if (CONSP (reps)) |
| 180 | { | 180 | { |
| 181 | int i = 0; | 181 | int i = 0; |
| 182 | Lisp_Object vals = values; | 182 | Lisp_Object vals = values; |