From: Richard M. Stallman Date: Fri, 18 Jul 1997 22:55:49 +0000 (+0000) Subject: (Ffind_operation_coding_system): Use Ffboundp to X-Git-Tag: emacs-20.1~1086 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=465edc86d163dfe6476f7c4bf5572da5408b2202;p=emacs.git (Ffind_operation_coding_system): Use Ffboundp to check for a function entry. --- diff --git a/src/coding.c b/src/coding.c index 116a54e444f..feae107298e 100644 --- a/src/coding.c +++ b/src/coding.c @@ -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; }