]> git.eshelyaron.com Git - emacs.git/commitdiff
; Improve use-package-autoload-keymap docstring
authorStefan Kangas <stefankangas@gmail.com>
Fri, 9 Dec 2022 05:55:48 +0000 (06:55 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Fri, 9 Dec 2022 05:55:48 +0000 (06:55 +0100)
* lisp/use-package/use-package-bind-key.el
(use-package-autoload-keymap): Improve docstring.

lisp/use-package/use-package-bind-key.el

index 44242c9e01dddcdb26ab013109fdf463ad18f1f3..4ebf54825c6591623fc15610b473bcadaa0ac395 100644 (file)
 
 ;;;###autoload
 (defun use-package-autoload-keymap (keymap-symbol package override)
-  "Loads PACKAGE and then binds the key sequence used to invoke
-this function to KEYMAP-SYMBOL. It then simulates pressing the
-same key sequence a again, so that the next key pressed is routed
-to the newly loaded keymap.
+  "Load PACKAGE and bind key sequence invoking this function to KEYMAP-SYMBOL.
+Then simulate pressing the same key sequence a again, so that the
+next key pressed is routed to the newly loaded keymap.
 
-This function supports use-package's :bind-keymap keyword. It
+This function supports use-package's :bind-keymap keyword.  It
 works by binding the given key sequence to an invocation of this
-function for a particular keymap. The keymap is expected to be
-defined by the package. In this way, loading the package is
+function for a particular keymap.  The keymap is expected to be
+defined by the package.  In this way, loading the package is
 deferred until the prefix key sequence is pressed."
   (if (not (require package nil t))
       (use-package-error (format "Cannot load package.el: %s" package))