emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/dash 911ef09 1/2: * dash.el (->, ->>): Indent with 1 di


From: ELPA Syncer
Subject: [elpa] externals/dash 911ef09 1/2: * dash.el (->, ->>): Indent with 1 distinguished arg.
Date: Mon, 8 Mar 2021 05:57:06 -0500 (EST)

branch: externals/dash
commit 911ef09a30c0a5211f064e7761f9fc26dbf512b6
Author: Kien Nguyen <kien.n.quang@gmail.com>
Commit: Basil L. Contovounesios <contovob@tcd.ie>

    * dash.el (->, ->>): Indent with 1 distinguished arg.
    
    Copyright-paperwork-exempt: yes
---
 dash.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dash.el b/dash.el
index 3e55f9d..c5fdc94 100644
--- a/dash.el
+++ b/dash.el
@@ -1725,7 +1725,8 @@ See also: `-select-columns', `-select-by-indices'"
 in the first form, making a list of it if it is not a list
 already. If there are more forms, insert the first form as the
 second item in second form, etc."
-  (declare (debug (form &rest [&or symbolp (sexp &rest form)])))
+  (declare (debug (form &rest [&or symbolp (sexp &rest form)]))
+           (indent 1))
   (cond
    ((null form) x)
    ((null more) (if (listp form)
@@ -1738,7 +1739,8 @@ second item in second form, etc."
 in the first form, making a list of it if it is not a list
 already. If there are more forms, insert the first form as the
 last item in second form, etc."
-  (declare (debug ->))
+  (declare (debug ->)
+           (indent 1))
   (cond
    ((null form) x)
    ((null more) (if (listp form)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]