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

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

[elpa] externals/setup 8aa90698ac 3/3: Rephrase documentation with cadr


From: ELPA Syncer
Subject: [elpa] externals/setup 8aa90698ac 3/3: Rephrase documentation with cadr shorthands
Date: Tue, 15 Feb 2022 07:58:06 -0500 (EST)

branch: externals/setup
commit 8aa90698ac8dd48a9510af1079067e217e721678
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    Rephrase documentation with cadr shorthands
---
 setup.el | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/setup.el b/setup.el
index f3560e3f29..a2be32cb0c 100644
--- a/setup.el
+++ b/setup.el
@@ -441,8 +441,7 @@ If HOOK is a list, apply BODY to all elements of HOOK."
          (package-refresh-contents))
        (package-install ',package)))
   :documentation "Install PACKAGE if it hasn't been installed yet.
-This macro can be used as NAME, and it will replace itself with
-the first PACKAGE."
+The first PACKAGE can be used to deduce the feature context."
   :repeatable t
   :shorthand #'cadr)
 
@@ -451,8 +450,7 @@ the first PACKAGE."
     `(unless (require ',feature nil t)
        ,(setup-quit)))
   :documentation "Try to require FEATURE, or stop evaluating body.
-This macro can be used as NAME, and it will replace itself with
-the first FEATURE."
+The first FEATURE can be used to deduce the feature context."
   :repeatable t
   :shorthand #'cadr)
 
@@ -601,8 +599,7 @@ supported:
     `(unless (package-installed-p ',package)
        ,(setup-quit)))
   :documentation "If package is not installed, stop evaluating the body.
-This macro can be used as NAME, and it will replace itself with
-the first PACKAGE."
+The first PACKAGE can be used to deduce the feature context."
   :repeatable t
   :shorthand #'cadr)
 
@@ -611,8 +608,7 @@ the first PACKAGE."
     `(unless (featurep ',feature)
        ,(setup-quit)))
   :documentation "If FEATURE is not available, stop evaluating the body.
-This macro can be used as NAME, and it will replace itself with
-the first PACKAGE."
+The first FEATURE can be used to deduce the feature context."
   :repeatable t
   :shorthand #'cadr)
 



reply via email to

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