changeset 52806:4519d019f12e

(Fcoding_system_p): Return t for auto-loading coding system.
author Kenichi Handa <handa@m17n.org>
date Tue, 07 Oct 2003 23:34:15 +0000
parents c0068a71bb2e
children e157d6293753
files src/coding.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Tue Oct 07 21:27:52 2003 +0000
+++ b/src/coding.c	Tue Oct 07 23:34:15 2003 +0000
@@ -6333,6 +6333,8 @@
     return Qt;
   if (!SYMBOLP (obj))
     return Qnil;
+  if (! NILP (Fget (obj, Qcoding_system_define_form)))
+    return Qt;
   /* Get coding-spec vector for OBJ.  */
   obj = Fget (obj, Qcoding_system);
   return ((VECTORP (obj) && XVECTOR (obj)->size == 5)