(Ffind_operation_coding_system): Use Ffboundp to
authorRichard M. Stallman <rms@gnu.org>
Fri, 18 Jul 1997 22:55:49 +0000 (22:55 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 18 Jul 1997 22:55:49 +0000 (22:55 +0000)
check for a function entry.

src/coding.c

index 116a54e..feae107 100644 (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;
        }