Andy Piper <andyp(a)bea.com> wrote:
Can anyone tell me what's wrong with this?
(make-coding-system
'weblogic 'undecided
"Coding system used for WebLogic Java files.
This coding system converts tabs to spaces on write and vice-versa on read."
'(post-read-conversion tabify pre-write-conversion untabify))
Dunno, but the function for 'post-read-conversion is supposed to have
one argument. Maybe you want
(lambda (length)
(tabify (point) length))
or somesuch for that bit ?
--
John Paul Wallington