summaryrefslogtreecommitdiff
path: root/gnosis.el
diff options
context:
space:
mode:
Diffstat (limited to 'gnosis.el')
-rw-r--r--gnosis.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/gnosis.el b/gnosis.el
index a0bf469..bb7b6d6 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -788,9 +788,13 @@ Valid cloze formats include:
"Compare STR1 and STR2.
Compare 2 strings, ignoring case and whitespace."
- (<= (string-distance (downcase (replace-regexp-in-string "\\s-" "" str1))
- (downcase (replace-regexp-in-string "\\s-" "" str2)))
- gnosis-string-difference))
+ (let ((string-compare-func (if (or (>= (length str1) gnosis-string-difference)
+ (>= (length str2) gnosis-string-difference))
+ #'(lambda (str1 str2) (<= (string-distance str1 str2) gnosis-string-difference))
+ #'string=)))
+ (funcall string-compare-func
+ (downcase (replace-regexp-in-string "\\s-" "" str1))
+ (downcase (replace-regexp-in-string "\\s-" "" str2)))))
(defun gnosis-directory-files (&optional dir regex)