> 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)
Next &optional change is done by me. sigh. (defun remove-overlays (&optional beg end name val) "Clear BEG and END of overlays whose property NAME has value VAL. Overlays might be moved and/or split. BEG and END default respectively to the beginning and end of buffer." > > Would something like this work instead?: > > (mapc #'delete-overlay (overlays-in (point-min) (point-max))) Thank you. I've installed your change and just put it to my mirror. > xtla-browse.el looks very cool :o) Thank you, I feel the honor should go to tree widget. Masatake YAMATO
