summaryrefslogtreecommitdiff
path: root/src/coding.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-12 06:45:09 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-12 06:45:09 +0000
commit5d632ccf24ce7fa44cd3ff8230bcc20dc4623506 (patch)
tree58d9b194331ef2f76d216450f725e0da3f09f3d6 /src/coding.c
parent7523d17c5453087cf04f2b4a04bb4b685c89b323 (diff)
(Ffind_coding_system): Use call1, not call2.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c2
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.")
if (! NILP (Fcoding_system_p (val)))
return Fcons (val, val);
if (!NILP (Fboundp (val)))
- return call2 (val, Flist (nargs, args));
+ return call1 (val, Flist (nargs, args));
return Qnil;
}
}