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

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

[elpa] externals/objed 1c152a1 137/166: Fix mc/num-cursors undefined whe


From: Clemens Radermacher
Subject: [elpa] externals/objed 1c152a1 137/166: Fix mc/num-cursors undefined when mc not loaded
Date: Sun, 29 Dec 2019 08:21:15 -0500 (EST)

branch: externals/objed
commit 1c152a10dc02b2d55159040b323cdae8378a2fe5
Author: Clemens Radermacher <address@hidden>
Commit: Clemens Radermacher <address@hidden>

    Fix mc/num-cursors undefined when mc not loaded
---
 objed.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/objed.el b/objed.el
index d0e982b..9f035c7 100644
--- a/objed.el
+++ b/objed.el
@@ -3737,7 +3737,7 @@ and RANGE hold the object position data."
     (cond ((eq 'keep exit)
            (ignore))
           ((eq 'mc exit)
-           (when (boundp 'multiple-cursors-mode)
+           (when (fboundp 'multiple-cursors-mode)
              (if (> (mc/num-cursors) 1)
                  (run-at-time 0 nil 'multiple-cursors-mode)
                (multiple-cursors-mode 0)))



reply via email to

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