Replace tabs by spaces

This commit is contained in:
Andros Fenollosa 2023-06-12 11:45:25 +02:00
parent a06b9cb2e7
commit 134d747770

View File

@ -30,7 +30,9 @@ if all words should be capitalized."
sentence-with-first-word-capitalized)) sentence-with-first-word-capitalized))
(defmacro format-region-curried (separator is-first-word-capitalized is-all-words-capitalized) (defmacro format-region-curried (separator
is-first-word-capitalized
is-all-words-capitalized)
"Curry the function to-format with SEPARATOR, IS-FIRST-WORD-CAPITALIZED and IS-ALL-WORDS-CAPITALIZED." "Curry the function to-format with SEPARATOR, IS-FIRST-WORD-CAPITALIZED and IS-ALL-WORDS-CAPITALIZED."
`(lambda (sentence) (format-region-to-format sentence ,separator ,is-first-word-capitalized ,is-all-words-capitalized))) `(lambda (sentence) (format-region-to-format sentence ,separator ,is-first-word-capitalized ,is-all-words-capitalized)))