diff --git a/dash.el b/dash.el index 55285fa..c2b39ca 100644 --- a/dash.el +++ b/dash.el @@ -1536,7 +1536,8 @@ VARIABLE to the result of the first form, and so forth." (defmacro -some-> (x &optional form &rest more) "When expr is non-nil, thread it through the first form (via `->'), and when that result is non-nil, through the next form, etc." - (declare (debug ->)) + (declare (debug ->) + (indent 1)) (if (null form) x (let ((result (make-symbol "result"))) `(-some-> (-when-let (,result ,x) @@ -1546,7 +1547,8 @@ and when that result is non-nil, through the next form, etc." (defmacro -some->> (x &optional form &rest more) "When expr is non-nil, thread it through the first form (via `->>'), and when that result is non-nil, through the next form, etc." - (declare (debug ->)) + (declare (debug ->) + (indent 1)) (if (null form) x (let ((result (make-symbol "result"))) `(-some->> (-when-let (,result ,x) @@ -1556,7 +1558,8 @@ and when that result is non-nil, through the next form, etc." (defmacro -some--> (x &optional form &rest more) "When expr in non-nil, thread it through the first form (via `-->'), and when that result is non-nil, through the next form, etc." - (declare (debug ->)) + (declare (debug ->) + (indent 1)) (if (null form) x (let ((result (make-symbol "result"))) `(-some--> (-when-let (,result ,x)