From eba4bd4b8c3f87cb0798a3505723b8159503501d Mon Sep 17 00:00:00 2001 From: Erik Huelsmann Date: Sun, 28 Oct 2018 19:01:12 +0000 Subject: [PATCH] Fix one too many SETQ conversions --- process.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process.lisp b/process.lisp index a2c9fb4..5382bb8 100644 --- a/process.lisp +++ b/process.lisp @@ -166,7 +166,7 @@ (plump:make-element news "section")) (let ((title-node (shallow-copy-object node))) - (setq (plump:tag-name title-node) "h7") + (setf (plump:tag-name title-node) "h7") (plump:append-child current-news title-node)) (next-node) (setq state :read-news-content)) -- GitLab