diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-11-07 18:49:48 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-11-07 18:49:48 +0000 |
commit | 07daadbd3233bbdcf59a710d01ad58b034335d21 (patch) | |
tree | b7ffeec5af970ad125066ad6dbdd1eecd36e4417 /lisp/elide-head.el | |
parent | 3829bcc589bf84c5b2f7327d8728c4f84840829b (diff) | |
download | emacs-07daadbd3233bbdcf59a710d01ad58b034335d21.tar.gz |
(elide-head): Don't make intangible.
Diffstat (limited to 'lisp/elide-head.el')
-rw-r--r-- | lisp/elide-head.el | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/elide-head.el b/lisp/elide-head.el index cae63481d14..8a5f62d0e50 100644 --- a/lisp/elide-head.el +++ b/lisp/elide-head.el @@ -105,7 +105,6 @@ This is suitable as an entry on `find-file-hook' or appropriate mode hooks." (move-overlay elide-head-overlay (point-marker) end) (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 "..."))))))) |