diff options
| author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-08-22 04:12:28 +0100 |
|---|---|---|
| committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-08-22 04:12:28 +0100 |
| commit | ac66dbd43a6655b4bd7f06284c1615622ca095a8 (patch) | |
| tree | 039f59ad51a44828332769ddb97a2d93dbf6a150 | |
| parent | 49083a02f19b90043b13d27e0c0c302422fb7b40 (diff) | |
Fix bug with rm-included-modes not working.
Fixes #3
| -rw-r--r-- | rich-minority.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rich-minority.el b/rich-minority.el index dff50bc..256d1f7 100644 --- a/rich-minority.el +++ b/rich-minority.el @@ -5,7 +5,7 @@ ;; Author: Artur Malabarba <bruce.connor.am@gmail.com> ;; URL: http://github.com/Bruce-Connor/rich-minority ;; Package-Requires: ((cl-lib "0.5")) -;; Version: 0.1 +;; Version: 0.1.1 ;; Keywords: mode-line faces ;; Prefix: rm ;; Separator: - @@ -201,7 +201,7 @@ These properties take priority over those defined in x)) out)))) (when rm-included-modes - (setq pred (if (listp rmm-included-modes) #'member #'rm--string-match)) + (setq pred (if (listp rm-included-modes) #'member #'rm--string-match)) (setq out (remove nil (mapcar |
