From 465edc86d163dfe6476f7c4bf5572da5408b2202 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 18 Jul 1997 22:55:49 +0000 Subject: [PATCH] (Ffind_operation_coding_system): Use Ffboundp to check for a function entry. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2