diff options
author | John Wiegley <johnw@newartisans.com> | 2018-03-12 23:35:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-12 23:35:01 -0700 |
commit | 742cf27b0eeff52aa6bbfc85b96fdc3a120ddfa3 (patch) | |
tree | 5edc600e1bdc9ee7b6cb9898ea41cb948ece9dbf /lisp/use-package | |
parent | dd8ef121123741cfe10524820602fa9e00b0c07b (diff) | |
parent | 69a561b86b4d781de5294964176509b112d7a7bd (diff) | |
download | emacs-742cf27b0eeff52aa6bbfc85b96fdc3a120ddfa3.tar.gz emacs-742cf27b0eeff52aa6bbfc85b96fdc3a120ddfa3.tar.bz2 emacs-742cf27b0eeff52aa6bbfc85b96fdc3a120ddfa3.zip |
Merge pull request from DamienCassou/fix-report-again
Fix report again after revert
GitHub-reference: https://github.com/jwiegley/use-package/issues/647
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package-core.el | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 83630b80785..bd18c972303 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -43,6 +43,12 @@ (require 'cl-lib) (require 'tabulated-list) +(if (and (eq emacs-major-version 24) (eq emacs-minor-version 3)) + (defsubst hash-table-keys (hash-table) + "Return a list of keys in HASH-TABLE." + (cl-loop for k being the hash-keys of hash-table collect k)) + (require 'subr-x)) + (eval-when-compile (require 'cl) (require 'regexp-opt)) @@ -966,27 +972,27 @@ If RECURSED is non-nil, recurse into sublists." (setq use-package-statistics (make-hash-table))) (defun use-package-statistics-status (package) - "Return loading configuration status of PACKAGE." - (cond ((gethash :config statistics) "Configured") - ((gethash :init statistics) "Initialized") - ((gethash :preface statistics) "Prefaced") - ((gethash :use-package statistics) "Declared"))) + "Return loading configuration status of PACKAGE statistics." + (cond ((gethash :config package) "Configured") + ((gethash :init package) "Initialized") + ((gethash :preface package) "Prefaced") + ((gethash :use-package package) "Declared"))) (defun use-package-statistics-last-event (package) - "Return the date when package's status last changed. + "Return the date when PACKAGE's status last changed. The date is returned as a string." (format-time-string "%Y-%m-%d %a %H:%M" - (or (gethash :config statistics) - (gethash :init statistics) - (gethash :preface statistics) - (gethash :use-package statistics)))) + (or (gethash :config package) + (gethash :init package) + (gethash :preface package) + (gethash :use-package package)))) (defun use-package-statistics-time (package) - "Return the time is took for package to load." - (+ (float-time (gethash :config-secs statistics 0)) - (float-time (gethash :init-secs statistics 0)) - (float-time (gethash :preface-secs statistics 0)) - (float-time (gethash :use-package-secs statistics 0)))) + "Return the time is took for PACKAGE to load." + (+ (float-time (gethash :config-secs package 0)) + (float-time (gethash :init-secs package 0)) + (float-time (gethash :preface-secs package 0)) + (float-time (gethash :use-package-secs package 0)))) (defun use-package-statistics-convert (package) "Return information about PACKAGE. @@ -998,9 +1004,9 @@ The information is formatted in a way suitable for package (vector (symbol-name package) - (use-package-statistics-status package) - (use-package-statistics-last-event package) - (format "%.2f" (use-package-statistics-time package)))))) + (use-package-statistics-status statistics) + (use-package-statistics-last-event statistics) + (format "%.2f" (use-package-statistics-time statistics)))))) (defun use-package-report () "Show current statistics gathered about use-package declarations. |