From: Richard M. Stallman Date: Sat, 12 Jul 1997 06:45:09 +0000 (+0000) Subject: (Ffind_coding_system): Use call1, not call2. X-Git-Tag: emacs-20.1~1199 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d632ccf24ce7fa44cd3ff8230bcc20dc4623506;p=emacs.git (Ffind_coding_system): Use call1, not call2. --- 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; } }