(Ffind_operation_coding_system): Use Ffboundp to

check for a function entry.
This commit is contained in:
Richard M. Stallman 1997-07-18 22:55:49 +00:00
parent 5e2729dd57
commit 465edc86d1

View file

@ -3570,7 +3570,7 @@ which is a list of all the arguments given to this function.")
return Qnil;
if (! NILP (Fcoding_system_p (val)))
return Fcons (val, val);
if (!NILP (Fboundp (val)))
if (!NILP (Ffboundp (val)))
return call1 (val, Flist (nargs, args));
return Qnil;
}