From: John Wiegley Date: Mon, 16 Mar 2015 02:21:11 +0000 (-0500) Subject: Correct an erroneous symbol reference X-Git-Tag: emacs-29.0.90~1306^2~15^2~386 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a2030288716a2aa315482fa265cc970b5a208703;p=emacs.git Correct an erroneous symbol reference --- diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 6febf6af698..be4b0cd7c09 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -503,7 +503,7 @@ this file. Usage: ;; At this point, we can expand the macro using the helper function. ;; `use--package'. (let* - ((body (use--package name name-symbol name-symbol args*)) + ((body (use--package name name-symbol name-string args*)) (pred (plist-get args* :if)) (expansion (if pred `(when ,pred ,@body)