From 44c837879e542e5200359d63b3cf647166f3862c Mon Sep 17 00:00:00 2001 From: Nahuel Greco Date: Wed, 20 May 2020 13:44:47 -0300 Subject: [PATCH] typo, should be a vector, not a bytecode object Solves https://github.com/jwiegley/use-package/issues/842 --- lisp/use-package/use-package-core.el | 8 ++++---- 1 file 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: "Show current statistics gathered about use-package declarations." (setq tabulated-list-format ;; The sum of column width is 80 characters: - #[("Package" 25 t) - ("Status" 13 t) - ("Last Event" 23 t) - ("Time" 10 t)]) + [("Package" 25 t) + ("Status" 13 t) + ("Last Event" 23 t) + ("Time" 10 t)]) (tabulated-list-init-header)) (defun use-package-statistics-gather (keyword name after) -- 2.39.2