emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/multiple-cursors c34e4df 064/434: Don't grow cursor overla


From: ELPA Syncer
Subject: [nongnu] elpa/multiple-cursors c34e4df 064/434: Don't grow cursor overlays.
Date: Sat, 7 Aug 2021 09:19:56 -0400 (EDT)

branch: elpa/multiple-cursors
commit c34e4df4440f63e385df9983ea38bc356ca82fab
Author: Magnar Sveen <magnars@gmail.com>
Commit: Magnar Sveen <magnars@gmail.com>

    Don't grow cursor overlays.
---
 multiple-cursors-core.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/multiple-cursors-core.el b/multiple-cursors-core.el
index a11e60e..2893637 100644
--- a/multiple-cursors-core.el
+++ b/multiple-cursors-core.el
@@ -10,13 +10,13 @@
 
 (defun mc/make-cursor-overlay-at-eol (pos)
   "Create overlay to look like cursor at end of line."
-  (let ((overlay (make-overlay pos pos nil nil t)))
+  (let ((overlay (make-overlay pos pos nil nil nil)))
     (overlay-put overlay 'after-string (propertize " " 'face 'mc/cursor-face))
     overlay))
 
 (defun mc/make-cursor-overlay-inline (pos)
   "Create overlay to look like cursor inside text."
-  (let ((overlay (make-overlay pos (1+ pos) nil nil t)))
+  (let ((overlay (make-overlay pos (1+ pos) nil nil nil)))
     (overlay-put overlay 'face 'mc/cursor-face)
     overlay))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]