branch: externals/dash
commit 49cea8749ee23ba40a7caec0420e1847fddfc5bf
Author: Philipp Stephani <p...@google.com>
Commit: Philipp Stephani <p...@google.com>

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

Reply via email to