* dash.el (-doto): Fix Edebug spec.

master
Basil L. Contovounesios 5 years ago
parent 0789fd068c
commit e0254c56e7
No known key found for this signature in database
GPG Key ID: 205AB54A5D5D8CFF
  1. 2
      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)

Loading…
Cancel
Save