From: Nahuel Greco Date: Wed, 20 May 2020 16:44:47 +0000 (-0300) Subject: typo, should be a vector, not a bytecode object X-Git-Tag: emacs-29.0.90~1306^2~15^2~53^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=44c837879e542e5200359d63b3cf647166f3862c;p=emacs.git typo, should be a vector, not a bytecode object Solves https://github.com/jwiegley/use-package/issues/842 --- 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)