diff options
| author | Steve Purcell | 2014-12-14 15:56:22 +0200 |
|---|---|---|
| committer | Dmitry Gutov | 2015-01-06 21:42:12 +0300 |
| commit | 4e86e0295188cf0b5523c2bce0ac0d7ef3366f62 (patch) | |
| tree | 9e06ed1ea52484dbc7722c9fa519ff2b5af89651 | |
| parent | d279e6680842b872ae3aab1fb429b1879db50f7f (diff) | |
| download | emacs-4e86e0295188cf0b5523c2bce0ac0d7ef3366f62.tar.gz emacs-4e86e0295188cf0b5523c2bce0ac0d7ef3366f62.zip | |
Backport: Add an extra column for Version in list-packages table
* emacs-lisp/package.el (package-menu-mode): Use an extra column for
the "Version" column, to accomodate date-and-time-based versions.
(cherry picked from commit eaf25ad549dc5a9b26089f588e0a80268708a3d1)
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7c6485c52ba..baabc9ea539 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2014-12-14 Steve Purcell <steve@sanityinc.com> (tiny change) | ||
| 2 | |||
| 3 | * emacs-lisp/package.el (package-menu-mode): Use an extra column | ||
| 4 | for the "Version" column, to accomodate date-and-time-based | ||
| 5 | versions. | ||
| 6 | |||
| 1 | 2015-01-04 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2015-01-04 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 8 | ||
| 3 | Fix dired quoting bug with "Hit`N`Hide" | 9 | Fix dired quoting bug with "Hit`N`Hide" |
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index 1280018346b..5203e74dc64 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -1650,7 +1650,7 @@ Letters do not insert themselves; instead, they are commands. | |||
| 1650 | \\{package-menu-mode-map}" | 1650 | \\{package-menu-mode-map}" |
| 1651 | (setq tabulated-list-format | 1651 | (setq tabulated-list-format |
| 1652 | `[("Package" 18 package-menu--name-predicate) | 1652 | `[("Package" 18 package-menu--name-predicate) |
| 1653 | ("Version" 12 nil) | 1653 | ("Version" 13 nil) |
| 1654 | ("Status" 10 package-menu--status-predicate) | 1654 | ("Status" 10 package-menu--status-predicate) |
| 1655 | ,@(if (cdr package-archives) | 1655 | ,@(if (cdr package-archives) |
| 1656 | '(("Archive" 10 package-menu--archive-predicate))) | 1656 | '(("Archive" 10 package-menu--archive-predicate))) |