|
From: | martin rudalics |
Subject: | Re: Feature request : Tab-completion for 'shell-comand' |
Date: | Thu, 13 Mar 2008 20:02:14 +0100 |
User-agent: | Mozilla Thunderbird 1.0 (Windows/20041206) |
>>>`(remove-overlays)' won't remove it because it can't find this overlay >>>in (overlays-in (point-min) (point-max)). > > >>That seems like a problem in itself. > > > Indeed. If (1+ (point-max)) works, then a solution is to let > `remove-overlays' default to (1+ (point-max)) rather than just > (point-max). I suppose this would make (progn (make-overlay 5 6) (narrow-to-region 2 5) (remove-overlays) (widen)) fail. The correct approach is to call `remove-overlays' twice as (remove-overlays) (remove-overlays (point-max) (point-max))
[Prev in Thread] | Current Thread | [Next in Thread] |