From 7d843984b3e99d45682d51d30b5fa161ee90c7af Mon Sep 17 00:00:00 2001 From: Iqbal Ansari Date: Sun, 8 Mar 2015 11:52:56 +0530 Subject: [PATCH] Add missing require to mc-hide-unmatched-lines-mode The function `hum/hide-unmatched-lines` uses the function `mc/cursor-beg`, defined in `mc-mark-more.el`, however the feature is not required leading to failures in some edge case. Fixes #187 --- mc-hide-unmatched-lines-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mc-hide-unmatched-lines-mode.el b/mc-hide-unmatched-lines-mode.el index 684080e..5221ef8 100644 --- a/mc-hide-unmatched-lines-mode.el +++ b/mc-hide-unmatched-lines-mode.el @@ -30,6 +30,7 @@ ;;; Code: (require 'multiple-cursors-core) +(require 'mc-mark-more) (defvar hum/hide-unmatched-lines-mode-map (make-sparse-keymap) "Keymap for hide unmatched lines is mainly for rebinding C-g")