diff options
| author | Richard M. Stallman | 1997-07-12 06:45:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-12 06:45:09 +0000 |
| commit | 5d632ccf24ce7fa44cd3ff8230bcc20dc4623506 (patch) | |
| tree | 58d9b194331ef2f76d216450f725e0da3f09f3d6 /src/coding.c | |
| parent | 7523d17c5453087cf04f2b4a04bb4b685c89b323 (diff) | |
| download | emacs-5d632ccf24ce7fa44cd3ff8230bcc20dc4623506.tar.gz emacs-5d632ccf24ce7fa44cd3ff8230bcc20dc4623506.zip | |
(Ffind_coding_system): Use call1, not call2.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 1e618044ccd..a2ed7aa038e 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -3554,7 +3554,7 @@ which is a list of all the arguments given to this function.") | |||
| 3554 | if (! NILP (Fcoding_system_p (val))) | 3554 | if (! NILP (Fcoding_system_p (val))) |
| 3555 | return Fcons (val, val); | 3555 | return Fcons (val, val); |
| 3556 | if (!NILP (Fboundp (val))) | 3556 | if (!NILP (Fboundp (val))) |
| 3557 | return call2 (val, Flist (nargs, args)); | 3557 | return call1 (val, Flist (nargs, args)); |
| 3558 | return Qnil; | 3558 | return Qnil; |
| 3559 | } | 3559 | } |
| 3560 | } | 3560 | } |