(phases (cl-remove-if #'(lambda (x) (keywordp args))))))
)
-(defun use-package-progn (body)
- (if (= (length body) 1)
- (car body)
- `(progn ,@body)))
-
(defun use-package-expand (name label form)
"FORM is a list of forms, so `((foo))' if only `foo' is being called."
(declare (indent 1))
(let ((err (make-symbol "err")))
(list
`(condition-case-unless-debug ,err
- ,(use-package-progn form)
+ ,(macroexp-progn form)
(error
(ignore
(display-warning 'use-package
(let ((keyword-name (substring (format "%s" keyword) 1))
(block (plist-get args keyword)))
(when block
- `((when ,(use-package-progn
+ `((when ,(macroexp-progn
(use-package-expand name-string (format "pre-%s hook" keyword)
`(run-hook-with-args-until-failure
',(intern (concat "use-package--" name-string
"--pre-" keyword-name "-hook")))))
- ,(use-package-progn
+ ,(macroexp-progn
(use-package-expand name-string (format "%s" keyword)
(plist-get args keyword)))
- ,(use-package-progn
+ ,(macroexp-progn
(use-package-expand name-string (format "post-%s hook" keyword)
`(run-hooks
',(intern (concat "use-package--" name-string
`((let ((,nowvar (current-time)))
(message "%s..." ,text)
(prog1
- ,(use-package-progn body)
+ ,(macroexp-progn body)
(let ((elapsed
(float-time (time-subtract (current-time) ,nowvar))))
(if (> elapsed ,use-package-minimum-reported-time)
(if config-body
`((eval-after-load ',name
;; '(,config-defun)
- ',(use-package-progn config-body))))
+ ',(macroexp-progn config-body))))
(list t))
(use-package-with-elapsed-timer
(format "Loading package %s" name-string)
body))
(requires (plist-get args* :requires))
(body*
- (use-package-progn
+ (macroexp-progn
(if (null requires)
expansion
`((if ,(if (listp requires)