Mercurial > emacs
diff src/coding.c @ 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 | f4d906e31662 |
| children | 36796e056954 |
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)
