]> git.eshelyaron.com Git - emacs.git/commitdiff
(elide-head): Use point-marker, not point.
authorDave Love <fx@gnu.org>
Mon, 10 Jan 2000 16:26:35 +0000 (16:26 +0000)
committerDave Love <fx@gnu.org>
Mon, 10 Jan 2000 16:26:35 +0000 (16:26 +0000)
lisp/elide-head.el

index 8c8d4eb2c93fd3c490ec4cf048ba072d98de6b8c..cdf72ddda6bf4ada47cc77bc19cffb54069594aa 100644 (file)
@@ -93,7 +93,7 @@ This is suitable as an entry on `find-file-hooks' or appropriate mode hooks."
              (when (re-search-forward (caar rest) nil t)
                (setq beg (point))
                (when (re-search-forward (cdar rest) nil t)
-                 (setq end (point)
+                 (setq end (point-marker)
                        rest nil))))
            (if rest (setq rest (cdr rest))))
          (if (not (and beg end))
@@ -102,7 +102,7 @@ This is suitable as an entry on `find-file-hooks' or appropriate mode hooks."
            (goto-char beg)
            (end-of-line)
            (if (overlayp elide-head-overlay)
-               (move-overlay elide-head-overlay (point) end)
+               (move-overlay elide-head-overlay (point-marker) end)
              (setq elide-head-overlay (make-overlay (point) end)))
            (overlay-put elide-head-overlay 'invisible t)
            (overlay-put elide-head-overlay 'intangible t)