Masatake YAMATO <[EMAIL PROTECTED]> writes:

>> I am using GNU Emacs21.3.1.
>> The function remove-overlay is not available on my system.
>
> I've just installed a temporally solution.
> Please merge my tree.

I've just merged your tree but got a backtrace when running M-x
tla-browse.  I think there's a call to `remove-overlays' in tla-browse
with the wrong number of arguments:

  (if (fboundp 'remove-overlays)
      (remove-overlays (point-min) (point-max)))

My emacs (CVS) says:

  remove-overlays is a compiled Lisp function in `subr'.
  (remove-overlays BEG END NAME VAL)

Would something like this work instead?:

  (mapc #'delete-overlay (overlays-in (point-min) (point-max)))

xtla-browse.el looks very cool :o)

Mark

-- 
Mark Triggs
<[EMAIL PROTECTED]>

Reply via email to