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

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

[elpa] externals/transient 0cd0b45c34 163/366: transient-define-*: Expli


From: Jonas Bernoulli
Subject: [elpa] externals/transient 0cd0b45c34 163/366: transient-define-*: Explicitly use `defun' indentation style
Date: Tue, 25 Jan 2022 18:54:37 -0500 (EST)

branch: externals/transient
commit 0cd0b45c345e084b791db15aaf2386675f119a93
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    transient-define-*: Explicitly use `defun' indentation style
    
    It wasn't necessary to do this explicitly when these macros where
    still named `define-*'.
---
 lisp/transient.el | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lisp/transient.el b/lisp/transient.el
index 5a02f06001..38d4f23010 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -661,6 +661,7 @@ to the setup function:
                            [&rest keywordp sexp]
                            [&rest vectorp]
                            [&optional ("interactive" interactive) def-body]))
+           (indent defun)
            (doc-string 3))
   (pcase-let ((`(,class ,slots ,suffixes ,docstr ,body)
                (transient--expand-define-args args)))
@@ -701,6 +702,7 @@ ARGLIST.  The infix arguments are usually accessed by using
                            [&rest keywordp sexp]
                            ("interactive" interactive)
                            def-body))
+           (indent defun)
            (doc-string 3))
   (pcase-let ((`(,class ,slots ,_ ,docstr ,body)
                (transient--expand-define-args args)))
@@ -749,6 +751,7 @@ keyword.
   (declare (debug (&define name lambda-list
                            [&optional lambda-doc]
                            [&rest keywordp sexp]))
+           (indent defun)
            (doc-string 3))
   (pcase-let ((`(,class ,slots ,_ ,docstr ,_)
                (transient--expand-define-args args)))



reply via email to

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