(Ffind_coding_system): Use call1, not call2.

This commit is contained in:
Richard M. Stallman 1997-07-12 06:45:09 +00:00
parent 7523d17c54
commit 5d632ccf24

View file

@ -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;
}
}