I am trying to learn Emacs Lisp. I would like to remove some white space from a string. I started with the following test case:
(defun test-fun (str)
(interactive)
(let ((ss str))
(replace-regexp-in-string "[ ]+" "" ss)
(message ss)))
(test-fun "He llo")
However, evaluating this in my Scratch buffer shows that no space is removed..