[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/transient 3038769 5/8: Autoload functions that users mi
From: |
Jonas Bernoulli |
Subject: |
[elpa] externals/transient 3038769 5/8: Autoload functions that users might use without requiring transient |
Date: |
Sun, 17 May 2020 17:13:13 -0400 (EDT) |
branch: externals/transient
commit 30387690fda86e3a594906e154dac4e20f60bbfb
Author: Jonas Bernoulli <address@hidden>
Commit: Jonas Bernoulli <address@hidden>
Autoload functions that users might use without requiring transient
These functions and macros serve a purpose similar to `define-key',
which is also available without the user having to require anything.
---
lisp/transient.el | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/lisp/transient.el b/lisp/transient.el
index f8c9d45..554c175 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -935,6 +935,7 @@ example, sets a variable use `transient-define-infix'
instead.
(append (setcdr mem (cons suf (cdr mem))))
(replace (setcar mem suf)))))))
+;;;###autoload
(defun transient-insert-suffix (prefix loc suffix)
"Insert a SUFFIX into PREFIX before LOC.
PREFIX is a prefix command, a symbol.
@@ -947,6 +948,7 @@ See info node `(transient)Modifying Existing Transients'."
(declare (indent defun))
(transient--insert-suffix prefix loc suffix 'insert))
+;;;###autoload
(defun transient-append-suffix (prefix loc suffix)
"Insert a SUFFIX into PREFIX after LOC.
PREFIX is a prefix command, a symbol.
@@ -959,6 +961,7 @@ See info node `(transient)Modifying Existing Transients'."
(declare (indent defun))
(transient--insert-suffix prefix loc suffix 'append))
+;;;###autoload
(defun transient-replace-suffix (prefix loc suffix)
"Replace the suffix at LOC in PREFIX with SUFFIX.
PREFIX is a prefix command, a symbol.
@@ -971,6 +974,7 @@ See info node `(transient)Modifying Existing Transients'."
(declare (indent defun))
(transient--insert-suffix prefix loc suffix 'replace))
+;;;###autoload
(defun transient-remove-suffix (prefix loc)
"Remove the suffix or group at LOC in PREFIX.
PREFIX is a prefix command, a symbol.
- [elpa] externals/transient updated (ba63f9d -> e293d5b), Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient ac02efc 1/8: transient--scroll-commands: New variable, Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient d49f85a 2/8: Support scroll-bar-toolkit-scroll, Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient c94cff7 3/8: Fix typo, Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient dd0c44c 4/8: Use the package prefix for everything, Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient 92f569e 7/8: Move library and manual to top-level, Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient e293d5b 8/8: Set initial dummy value for Package-Version, Jonas Bernoulli, 2020/05/17
- [elpa] externals/transient 3038769 5/8: Autoload functions that users might use without requiring transient,
Jonas Bernoulli <=
- [elpa] externals/transient a6e4cce 6/8: Remove the Package-Version header keyword again, Jonas Bernoulli, 2020/05/17