Skip to content

Commit

Permalink
Merge pull request #23 from conao3/fix-indent-style
Browse files Browse the repository at this point in the history
Fix indent style for function which need time
  • Loading branch information
chuntaro authored Jan 10, 2020
2 parents 4615c36 + 380a933 commit 9e40595
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions promise.el
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ Resolve:
Reject:
- <Never rejected>"
(declare (indent 1))
(promise-new
(lambda (resolve _reject)
(run-at-time time nil
Expand All @@ -198,6 +199,7 @@ Resolve:
Reject:
- <Never rejected>"
(declare (indent 1))
(promise-new
(lambda (resolve _reject)
(run-at-time time
Expand All @@ -217,6 +219,7 @@ Resolve:
Reject:
- REASON"
(declare (indent 1))
(promise-new
(lambda (_resolve reject)
(run-at-time time nil
Expand Down Expand Up @@ -505,6 +508,7 @@ Reject:
Timeout:
- Return (:timeouted)."
(declare (indent 1))
(catch 'done
(let* (handled
(timer (run-at-time timeout nil
Expand Down

0 comments on commit 9e40595

Please sign in to comment.