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

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

[nongnu] elpa/multiple-cursors 7d84398 327/434: Add missing require to m


From: ELPA Syncer
Subject: [nongnu] elpa/multiple-cursors 7d84398 327/434: Add missing require to mc-hide-unmatched-lines-mode
Date: Sat, 7 Aug 2021 09:20:52 -0400 (EDT)

branch: elpa/multiple-cursors
commit 7d843984b3e99d45682d51d30b5fa161ee90c7af
Author: Iqbal Ansari <iqbalansari02@yahoo.com>
Commit: Iqbal Ansari <iqbalansari02@yahoo.com>

    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")



reply via email to

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