From 8bba8ba15db4ebf0a2e137c191486479e7d7d28e Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Sat, 30 Mar 2024 17:46:48 +0100 Subject: [PATCH] Remove unnecessary function character --- src/main.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.lisp b/src/main.lisp index 44cc1e0..4b9a4db 100644 --- a/src/main.lisp +++ b/src/main.lisp @@ -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)