Hi,
thanks, that did the trick.
Gerd
Paul Kinnucan <[EMAIL PROTECTED]> writes:
> Hi John,
>
> I had a similar problem on XEmacs and traced the problem to the defalias
> semantic-overlays-at. Eric provided the simple fix below
>
> ;; (defalias 'semantic-overlays-at 'extent-at)
> (defalias 'semantic-overlays-at
> (lambda (pos) (extent-list nil pos pos)))
>
> which I included in my copy of semantic.el. I had assumed that Eric
> included the fix. However, in looking at the version of semantic.el in
> semantic-1.3.2, I see that it does not include the fix. So I have attached
> a copy. Please let me know if it solves the problem in your case.
>
> - Paul