branch: externals/dash
commit 40896b87d3f34d7ae0970a6bcd3321a43c267458
Author: Matus Goljer <[email protected]>
Commit: Matus Goljer <[email protected]>
Fix the -let debug declaration
---
dash.el | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/dash.el b/dash.el
index 6cfea03..d177831 100644
--- a/dash.el
+++ b/dash.el
@@ -1550,7 +1550,9 @@ plist-like key-value pairs, similarly to &keys keyword of
This binds N values from the list to a1 ... aN, then interprets
the cdr as a plist (see key/value matching above)."
- (declare (debug ((&rest (sexp form)) body))
+ (declare (debug ([&or (&rest (sexp form))
+ (vector [&rest [sexp form]])]
+ body))
(indent 1))
(if (vectorp varlist)
`(let* ,(dash--match (aref varlist 0) (aref varlist 1))