emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash e0254c5 274/316: * dash.el (-doto): Fix Edebug spe


From: ELPA Syncer
Subject: [elpa] externals/dash e0254c5 274/316: * dash.el (-doto): Fix Edebug spec.
Date: Mon, 15 Feb 2021 15:58:16 -0500 (EST)

branch: externals/dash
commit e0254c56e78b82f670e2d92ad7077c6cc96db1cf
Author: Basil L. Contovounesios <contovob@tcd.ie>
Commit: Basil L. Contovounesios <contovob@tcd.ie>

    * 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]