From: Dave Love Date: Wed, 2 Feb 2000 14:27:03 +0000 (+0000) Subject: (elide-head): Use point-marker more. X-Git-Tag: emacs-pretest-21.0.90~5126 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b74ce5c2bd096f90238217f67973f6d0f0920739;p=emacs.git (elide-head): Use point-marker more. --- diff --git a/lisp/elide-head.el b/lisp/elide-head.el index cdf72ddda6b..50c77684ae5 100644 --- a/lisp/elide-head.el +++ b/lisp/elide-head.el @@ -103,7 +103,7 @@ This is suitable as an entry on `find-file-hooks' or appropriate mode hooks." (end-of-line) (if (overlayp elide-head-overlay) (move-overlay elide-head-overlay (point-marker) end) - (setq elide-head-overlay (make-overlay (point) 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 'after-string "...")))))))