diff options
| author | Kenichi Handa <handa@m17n.org> | 2003-10-07 23:35:01 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 2003-10-07 23:35:01 +0000 |
| commit | c2164d91db8976f8e78d259b951f8a6501ea8aaf (patch) | |
| tree | a27c140d7998ad3f7c6e36043f3f3331aa67fc19 /src/coding.c | |
| parent | b2bd66f3e7c8309b3a514eef5704dbd195878591 (diff) | |
(Fcoding_system_p): Return t for auto-loading coding system.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c index 47bfbf5cacb..12558b958c4 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6333,6 +6333,8 @@ about coding-system objects. */) 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) |
