From 5d632ccf24ce7fa44cd3ff8230bcc20dc4623506 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 12 Jul 1997 06:45:09 +0000 Subject: [PATCH] (Ffind_coding_system): Use call1, not call2. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.11.4.GIT