branch: externals/dash
commit 6d20aa08640a7b26d21fdbbced887616b1bccaff
Author: Matus Goljer <[email protected]>
Commit: Matus Goljer <[email protected]>
If has an indent function 2, not 1
---
dash.el | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dash.el b/dash.el
index 76fa4d4..bb9defa 100644
--- a/dash.el
+++ b/dash.el
@@ -850,9 +850,9 @@ otherwise do ELSE."
(put '-when-let 'lisp-indent-function 1)
(put '-when-let* 'lisp-indent-function 1)
(put '--when-let 'lisp-indent-function 1)
-(put '-if-let 'lisp-indent-function 1)
-(put '-if-let* 'lisp-indent-function 1)
-(put '--if-let 'lisp-indent-function 1)
+(put '-if-let 'lisp-indent-function 2)
+(put '-if-let* 'lisp-indent-function 2)
+(put '--if-let 'lisp-indent-function 2)
(defun -distinct (list)
"Return a new list with all duplicates removed.