diff options
| author | Nahuel Greco | 2020-05-20 13:44:47 -0300 |
|---|---|---|
| committer | GitHub | 2020-05-20 13:44:47 -0300 |
| commit | 44c837879e542e5200359d63b3cf647166f3862c (patch) | |
| tree | af816960104e3ab1d5c575d56e2c791964896a51 | |
| parent | 91e5d275af4087f954ac0af75326eb269b984655 (diff) | |
| download | emacs-44c837879e542e5200359d63b3cf647166f3862c.tar.gz emacs-44c837879e542e5200359d63b3cf647166f3862c.zip | |
typo, should be a vector, not a bytecode object
Solves https://github.com/jwiegley/use-package/issues/842
| -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 c18877d5e66..1d637dbf3d0 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) |