summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-18 22:55:49 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-18 22:55:49 +0000
commit129c4c43ace35757e59aad854e6e2426797b4717 (patch)
treef42d21269ab07fff2dd9fa2943083ba881b4d710
parent3076257f1e539177f6d37107678b256771435a3a (diff)
downloademacs-129c4c43ace35757e59aad854e6e2426797b4717.tar.gz
(Ffind_operation_coding_system): Use Ffboundp to
check for a function entry.
-rw-r--r--src/coding.c2
1 files changed, 1 insertions, 1 deletions
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;
}