Fix function name typo

This commit is contained in:
Syohei YOSHIDA 2016-02-03 18:30:14 +09:00
parent f6edf01a9f
commit e948259fd2

View file

@ -57,7 +57,7 @@ NOTE: Do not run for every cursor."
(interactive) (interactive)
(if multiple-cursors-mode (if multiple-cursors-mode
;; attempt to deactivate mc without deleting the cursors ;; attempt to deactivate mc without deleting the cursors
(let ((cursors (mapcar (lambda (o) (cons (ovelay-get o 'point) (ovelay-get o 'mark)))(mc/all-fake-cursors)))) (let ((cursors (mapcar (lambda (o) (cons (overlay-get o 'point) (overlay-get o 'mark)))(mc/all-fake-cursors))))
;; does not work because deactivating mc destroys the overlays ;; does not work because deactivating mc destroys the overlays
(multiple-cursors-mode 0) (multiple-cursors-mode 0)
(dolist (p (cdr cursors)) (dolist (p (cdr cursors))