From 49cea8749ee23ba40a7caec0420e1847fddfc5bf Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Wed, 9 Jun 2021 00:26:07 +0200 Subject: [PATCH] Fix Edebug specification for -cut. The first argument becomes a function name. It can't be instrumented because that would result in an invalid form such as ((edebug-after 0 1 FUNCTION) ...) --- dash.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash.el b/dash.el index 3b5dd5b..be50166 100644 --- a/dash.el +++ b/dash.el @@ -3092,7 +3092,7 @@ In types: a -> b -> a" Arguments denoted by <> will be left unspecialized. See SRFI-26 for detailed description." - (declare (debug (&rest &or "<>" form))) + (declare (debug (&optional sexp &rest &or "<>" form))) (let* ((i 0) (args (--keep (when (eq it '<>) (setq i (1+ i))