diff options
| author | John Wiegley | 2020-06-18 11:03:35 -0700 |
|---|---|---|
| committer | GitHub | 2020-06-18 11:03:35 -0700 |
| commit | 203d15e34e99ac6bbe05bd10b2e849bd98d78d31 (patch) | |
| tree | 8260e86eed475b85670245e83196fb4809dc8966 | |
| parent | 0ec4660f74e6a182ce8be207f0e9a4cc1a59b9a2 (diff) | |
| parent | 218687d8979b1d6e2d5caee636372725a74ba0d9 (diff) | |
| download | emacs-203d15e34e99ac6bbe05bd10b2e849bd98d78d31.tar.gz emacs-203d15e34e99ac6bbe05bd10b2e849bd98d78d31.zip | |
Merge branch 'master' into call-hooks-even-if-no-config
| -rw-r--r-- | lisp/use-package/use-package-core.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index 220927b082b..e81e229a2f0 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el | |||
| @@ -1030,10 +1030,10 @@ meaning: | |||
| 1030 | "Show current statistics gathered about use-package declarations." | 1030 | "Show current statistics gathered about use-package declarations." |
| 1031 | (setq tabulated-list-format | 1031 | (setq tabulated-list-format |
| 1032 | ;; The sum of column width is 80 characters: | 1032 | ;; The sum of column width is 80 characters: |
| 1033 | #[("Package" 25 t) | 1033 | [("Package" 25 t) |
| 1034 | ("Status" 13 t) | 1034 | ("Status" 13 t) |
| 1035 | ("Last Event" 23 t) | 1035 | ("Last Event" 23 t) |
| 1036 | ("Time" 10 t)]) | 1036 | ("Time" 10 t)]) |
| 1037 | (tabulated-list-init-header)) | 1037 | (tabulated-list-init-header)) |
| 1038 | 1038 | ||
| 1039 | (defun use-package-statistics-gather (keyword name after) | 1039 | (defun use-package-statistics-gather (keyword name after) |