]> git.eshelyaron.com Git - emacs.git/commitdiff
(elide-head): Make overlay evaporate.
authorDave Love <fx@gnu.org>
Mon, 29 Jan 2001 17:38:03 +0000 (17:38 +0000)
committerDave Love <fx@gnu.org>
Mon, 29 Jan 2001 17:38:03 +0000 (17:38 +0000)
lisp/elide-head.el

index 50c77684ae5dd52d1c1aeec613cf80385157b726..9cd592057dcd16055d8dbe448961985c57b94f13 100644 (file)
@@ -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 ()