]> git.eshelyaron.com Git - emacs.git/commitdiff
Make string-clean-whitespace work on non-ASCII whitespace, too
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 21 Dec 2020 21:41:37 +0000 (22:41 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 21 Dec 2020 21:41:37 +0000 (22:41 +0100)
* lisp/emacs-lisp/subr-x.el (string-clean-whitespace): Also clean
up non-ASCII whitespace.

lisp/emacs-lisp/subr-x.el

index 80d4cb9b650dca4b04ac9d3ee2dabca2c2e6bcad..4d1a73a251a433b81d8e9d8ec27369f5cf981a4b 100644 (file)
@@ -269,7 +269,9 @@ carriage return."
 All sequences of whitespaces in STRING are collapsed into a
 single space character, and leading/trailing whitespace is
 removed."
-  (string-trim (replace-regexp-in-string "[ \t\n\r]+" " " string)))
+  (let ((blank "[[:blank:]\n]+"))
+    (string-trim (replace-regexp-in-string blank " " string)
+                 blank blank)))
 
 (defun string-fill (string length)
   "Try to word-wrap STRING so that no lines are longer than LENGTH.