mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 19:29:37 +00:00
A few changes for byte-compilation
This commit is contained in:
parent
1fe2c1c056
commit
34bc31e1d4
1 changed files with 5 additions and 5 deletions
|
@ -158,9 +158,7 @@ possible."
|
|||
,(use-package-progn body)
|
||||
(let ((elapsed
|
||||
(float-time (time-subtract (current-time) ,nowvar))))
|
||||
(if (> elapsed
|
||||
(or (bound-and-true-p use-package-minimum-reported-time)
|
||||
"0.01"))
|
||||
(if (> elapsed ,use-package-minimum-reported-time)
|
||||
(message "%s...done (%.3fs)" ,text elapsed)
|
||||
(message "%s...done" ,text)))))
|
||||
(use-package-progn body)))))
|
||||
|
@ -429,7 +427,8 @@ possible."
|
|||
`(diminish (quote ,var))))
|
||||
(plist-get args :diminish))))
|
||||
|
||||
(config-defun (make-symbol (concat name-string "-config"))))
|
||||
(config-defun
|
||||
(make-symbol (concat "use-package--" name-string "--config"))))
|
||||
|
||||
(setq commands (delete-dups commands))
|
||||
|
||||
|
@ -438,7 +437,8 @@ possible."
|
|||
(list (plist-get args :preface))
|
||||
|
||||
;; Setup the load-path
|
||||
(mapcar #'(lambda (path) `(add-to-list 'load-path ,path))
|
||||
(mapcar #'(lambda (path)
|
||||
`(eval-and-compile (add-to-list 'load-path ,path)))
|
||||
(plist-get args :load-path))
|
||||
|
||||
;; Setup any required autoloads
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue