diff options
author | Alex Kost <alezost@gmail.com> | 2016-01-07 22:40:53 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-01-16 13:02:21 +0300 |
commit | 56728668485dfcba457e64748ab709eacf39b6ce (patch) | |
tree | 0f6a6efc251c02eb840b98d69cc71ab45de21a3f /emacs/guix-messages.el | |
parent | 54c3c284d7f319d6db7c665c612fdbeefe81ae5f (diff) | |
download | guix-56728668485dfcba457e64748ab709eacf39b6ce.tar guix-56728668485dfcba457e64748ab709eacf39b6ce.tar.gz |
emacs: Remove 'generation' search type.
Use 'installed' search type instead.
* emacs/guix-main.scm (%patterns-makers): Remove 'generation'.
(package/output-sexps): Adjust accordingly.
* emacs/guix-ui-generation.el (guix-generation-info-insert-number):
Replace 'generation' search with 'installed'.
(guix-generation-list-show-packages): Likewise.
* emacs/guix-messages.el (guix-messages): Remove 'generation'.
Diffstat (limited to 'emacs/guix-messages.el')
-rw-r--r-- | emacs/guix-messages.el | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/emacs/guix-messages.el b/emacs/guix-messages.el index 234d3d11da..9f6d833252 100644 --- a/emacs/guix-messages.el +++ b/emacs/guix-messages.el @@ -55,14 +55,7 @@ (obsolete (0 "No obsolete packages in profile '%s'." profile) (1 "A single obsolete package in profile '%s'." profile) - (many "%d obsolete packages in profile '%s'." count profile)) - (generation - (0 "No packages installed in generation %d of profile '%s'." - val profile) - (1 "A single package installed in generation %d of profile '%s'." - val profile) - (many "%d packages installed in generation %d of profile '%s'." - count val profile))) + (many "%d obsolete packages in profile '%s'." count profile))) (output (id @@ -91,13 +84,6 @@ (0 "No obsolete package outputs in profile '%s'." profile) (1 "A single obsolete package output in profile '%s'." profile) (many "%d obsolete package outputs in profile '%s'." count profile)) - (generation - (0 "No package outputs installed in generation %d of profile '%s'." - val profile) - (1 "A single package output installed in generation %d of profile '%s'." - val profile) - (many "%d package outputs installed in generation %d of profile '%s'." - count val profile)) (profile-diff guix-message-outputs-by-diff)) |