diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-04-14 19:49:38 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-14 23:40:52 +0200 |
commit | 3dae43a92975cb6a1055e928523122bc340272fd (patch) | |
tree | da84b3c2484fb16a5b52aa46bc3001ba2128fdf4 | |
parent | c1c5d68a94e219d0e56d5dc0e0d6ed9b08076a30 (diff) | |
download | patches-3dae43a92975cb6a1055e928523122bc340272fd.tar patches-3dae43a92975cb6a1055e928523122bc340272fd.tar.gz |
ui: Highlight heading of generation lists.
* guix/ui.scm (display-generation): Highlight the "Generation" heading.
-rw-r--r-- | guix/ui.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 39b13fd4bc..92c845e944 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -1564,7 +1564,7 @@ DURATION-RELATION with the current time." (define (display-generation profile number) "Display a one-line summary of generation NUMBER of PROFILE." (unless (zero? number) - (let ((header (format #f (G_ "Generation ~a\t~a") number + (let ((header (format #f (highlight (G_ "Generation ~a\t~a")) number (date->string (time-utc->date (generation-time profile number)) |