summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2001-01-29 17:38:03 +0000
committerDave Love <fx@gnu.org>2001-01-29 17:38:03 +0000
commit06b15b4057623491e71dfda439096376e00a4dfe (patch)
treea6b746f859e82a4cd00510d9d69f1393cf400e92
parentae2fae72eaf7ec3dea448307269a891338dff9f9 (diff)
downloademacs-06b15b4057623491e71dfda439096376e00a4dfe.tar.gz
(elide-head): Make overlay evaporate.
-rw-r--r--lisp/elide-head.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/elide-head.el b/lisp/elide-head.el
index 50c77684ae5..9cd592057dc 100644
--- a/lisp/elide-head.el
+++ b/lisp/elide-head.el
@@ -106,6 +106,7 @@ This is suitable as an entry on `find-file-hooks' or appropriate mode hooks."
(setq elide-head-overlay (make-overlay (point-marker) end)))
(overlay-put elide-head-overlay 'invisible t)
(overlay-put elide-head-overlay 'intangible t)
+ (overlay-put elide-head-overlay 'evaporate t)
(overlay-put elide-head-overlay 'after-string "...")))))))
(defun elide-head-show ()