]> git.eshelyaron.com Git - emacs.git/commitdiff
Add a comment about a recent change
authorJohn Wiegley <johnw@newartisans.com>
Wed, 10 Feb 2016 00:33:09 +0000 (19:33 -0500)
committerJohn Wiegley <johnw@newartisans.com>
Wed, 10 Feb 2016 00:33:09 +0000 (19:33 -0500)
lisp/use-package/use-package.el

index d106ef2e20bc9c081ed02face964149b9dd9268b..cf5b2814d45bb30b218366078b830956aed781c3 100644 (file)
@@ -659,7 +659,12 @@ manually updated package."
 
 (defun use-package-normalize-pairs
     (name label arg &optional recursed allow-vector allow-string-cdrs)
-  "Normalize a list of string/symbol pairs."
+  "Normalize a list of string/symbol pairs.
+If RECURSED is non-nil, recurse into sublists.
+If ALLOW-VECTOR is non-nil, then the key to bind may specify a
+vector of keys, as accepted by `define-key'.
+If ALLOW-STRING-CDRS is non-nil, then the command name to bind to
+may also be a string, as accepted by `define-key'."
   (cond
    ((or (stringp arg) (and allow-vector (vectorp arg)))
     (list (cons arg (use-package-as-symbol name))))