Remove unnecessary function character
This commit is contained in:
parent
0891eb08ef
commit
8bba8ba15d
1 changed files with 2 additions and 2 deletions
|
@ -156,8 +156,8 @@ Example:
|
|||
|
||||
Returns:
|
||||
A new string with special characters removed."
|
||||
(remove-if-not #'(lambda (char)
|
||||
(or (alpha-char-p char) (digit-char-p char)))
|
||||
(remove-if-not (lambda (char)
|
||||
(or (alpha-char-p char) (digit-char-p char)))
|
||||
str))
|
||||
|
||||
(defun clean-form-str (str)
|
||||
|
|
Loading…
Add table
Reference in a new issue