From e0254c56e78b82f670e2d92ad7077c6cc96db1cf Mon Sep 17 00:00:00 2001 From: "Basil L. Contovounesios" Date: Sun, 24 Jan 2021 15:24:21 +0000 Subject: [PATCH] * dash.el (-doto): Fix Edebug spec. --- dash.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash.el b/dash.el index 8033fd2..88660a8 100644 --- a/dash.el +++ b/dash.el @@ -1768,7 +1768,7 @@ through the next form, etc." The RESULT of evaluating INIT is threaded through each of FORMS individually using `->', which see. The return value is RESULT, which FORMS may have modified by side effect." - (declare (debug (form body)) (indent 1)) + (declare (debug (form &rest &or symbolp consp)) (indent 1)) (let ((retval (make-symbol "result"))) `(let ((,retval ,init)) ,@(mapcar (lambda (form) `(-> ,retval ,form)) forms)