branch: elpa/spell-fu
commit 1feed2428799a9ad02ccb02f53dd106c0f9c8661
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>

    Fix inverted logic in spell-fu--dictionaries-remove-any
---
 spell-fu.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spell-fu.el b/spell-fu.el
index 705cf348566..58fd5b9ddb6 100644
--- a/spell-fu.el
+++ b/spell-fu.el
@@ -301,9 +301,9 @@ Notes:
           (lambda (dict)
             (cond
              ((funcall test-fn dict)
-              dict)
+              nil)
              (t
-              nil)))
+              dict)))
           spell-fu-dictionaries))))
 
 (defun spell-fu--cache-file (dict)

Reply via email to