branch: externals/objed
commit dc673b8db1e4e71e8cf6c83114ee8ee976a2c568
Author: Clemens Radermacher <[email protected]>
Commit: Clemens Radermacher <[email protected]>
Fix for mc counting non fake cursor as cursor
---
objed.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/objed.el b/objed.el
index e2d2df2..1c9161f 100644
--- a/objed.el
+++ b/objed.el
@@ -3457,7 +3457,7 @@ and RANGE hold the object position data."
(ignore))
((eq 'mc exit)
(when (boundp 'multiple-cursors-mode)
- (if (> (mc/num-cursors) 0)
+ (if (> (mc/num-cursors) 1)
(multiple-cursors-mode 1)
(multiple-cursors-mode 0)))
(objed--exit-objed))