diff options
author | Thanos Apollo <[email protected]> | 2024-01-10 08:48:00 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-01-10 08:48:00 +0200 |
commit | eb3fb50be9869d21099b6006d6ab05fd22e6ddf8 (patch) | |
tree | bd1fd6d73f885b31813ae7801c499a1ca8236cc7 /gnosis.el | |
parent | f486d7c9ca080931e096e7b0059313cf5ed0a00b (diff) |
gnosis-compare-strings: Redo without let statement
Diffstat (limited to 'gnosis.el')
-rw-r--r-- | gnosis.el | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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. |