]> git.eshelyaron.com Git - emacs.git/commitdiff
typo, should be a vector, not a bytecode object
authorNahuel Greco <ngreco@gmail.com>
Wed, 20 May 2020 16:44:47 +0000 (13:44 -0300)
committerGitHub <noreply@github.com>
Wed, 20 May 2020 16:44:47 +0000 (13:44 -0300)
Solves https://github.com/jwiegley/use-package/issues/842

lisp/use-package/use-package-core.el

index c18877d5e666499c1ceb0a5b942ca879c20d0dba..1d637dbf3d0aa6a69893da4e0c440eb3a84b40d5 100644 (file)
@@ -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)