From eb3fb50be9869d21099b6006d6ab05fd22e6ddf8 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Wed, 10 Jan 2024 08:48:00 +0200 Subject: gnosis-compare-strings: Redo without let statement --- gnosis.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnosis.el b/gnosis.el index f462fec..7185add 100644 --- a/gnosis.el +++ b/gnosis.el @@ -649,9 +649,8 @@ Valid cloze formats include: "Compare STR1 and STR2. Compare 2 strings, ignoring case and whitespace." - (let ((modified-str1 (downcase (replace-regexp-in-string "\\s-" "" str1))) - (modified-str2 (downcase (replace-regexp-in-string "\\s-" "" str2)))) - (string= modified-str1 modified-str2))) + (string= (downcase (replace-regexp-in-string "\\s-" "" str1)) + (downcase (replace-regexp-in-string "\\s-" "" str2)))) (defun gnosis-directory-files (&optional dir regex) "Return a list of file paths, relative to DIR directory. -- cgit v1.2.3