From: Stefan Monnier Date: Wed, 21 Mar 2012 18:21:24 +0000 (-0400) Subject: * lisp/outline.el (outline-flag-region): Evaporate overlays. X-Git-Tag: emacs-pretest-24.0.05~81^2~2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3d008e4f23fbb9ff7a3308eba745ab8d3a5e9698;p=emacs.git * lisp/outline.el (outline-flag-region): Evaporate overlays. Fixes: debbugs:10789 --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4cedbe5f9a6..14d3859f392 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2012-03-21 Stefan Monnier + * outline.el (outline-flag-region): Evaporate overlays (bug#10789). + * progmodes/etags.el (tags-completion-at-point-function): Improve last fix. diff --git a/lisp/outline.el b/lisp/outline.el index 15af855ff43..da5519f95eb 100644 --- a/lisp/outline.el +++ b/lisp/outline.el @@ -751,6 +751,7 @@ If FLAG is nil then text is shown, while if FLAG is t the text is hidden." ;; very end of the heading, before the newline, so text inserted at FROM ;; belongs to the heading rather than to the entry. (let ((o (make-overlay from to nil 'front-advance))) + (overlay-put o 'evaporate t) (overlay-put o 'invisible 'outline) (overlay-put o 'isearch-open-invisible (or outline-isearch-open-invisible-function