diff options
author | John Wiegley <johnw@newartisans.com> | 2014-09-18 21:33:08 +0100 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2014-09-18 21:33:08 +0100 |
commit | 6570447a05fc080693efb9db4dc8565a40c38b01 (patch) | |
tree | 051ae8c7a292a508c530153e25491b299f3cc77e /lisp/use-package/use-package.el | |
parent | 0bfa35614839c7830e11b30c82b17013661bec22 (diff) | |
parent | f07ecde5a1ba7d07405b4fd228b99529b37613a3 (diff) | |
download | emacs-6570447a05fc080693efb9db4dc8565a40c38b01.tar.gz emacs-6570447a05fc080693efb9db4dc8565a40c38b01.tar.bz2 emacs-6570447a05fc080693efb9db4dc8565a40c38b01.zip |
Merge pull request from Silex/master
Fix "compiling" typo
GitHub-reference: https://github.com/jwiegley/use-package/issues/125
Diffstat (limited to 'lisp/use-package/use-package.el')
-rw-r--r-- | lisp/use-package/use-package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/use-package.el b/lisp/use-package/use-package.el index 68aa3c9d0b6..bc2dec27380 100644 --- a/lisp/use-package/use-package.el +++ b/lisp/use-package/use-package.el @@ -415,7 +415,7 @@ For full documentation. please see commentary. ,(if (stringp name) `(load ,name t) `(require ',name nil t)) - (error (message "Error compiling %s: %s" ',name err) nil)))) + (error (message "Error requiring %s: %s" ',name err) nil)))) ,(if (and (or commands (use-package-plist-get args :defer)) (not (use-package-plist-get args :demand))) |