diff options
author | Roel Janssen <roel@gnu.org> | 2016-11-17 23:49:29 +0100 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2016-11-17 23:49:29 +0100 |
commit | 88bdbb2a0fd04e1fe5d390caf40697344d5de5b7 (patch) | |
tree | eec0b3cfb1a8078e30ed2a3bc9147830fc1db550 /guix | |
parent | 1f9803c2a49e853ca5721f13888a61a816c4dc09 (diff) |
guix package: Display newline after generation diffs.
* guix/ui.scm (display-profile-content-diff): Display an extra newline.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/ui.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index b9fbbfd0e3..cafb3c6705 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -1094,7 +1094,8 @@ DURATION-RELATION with the current time." (removed (lset-difference equal-entry? (list-entries old) (list-entries new)))) (for-each (cut display-entry <> "+") added) - (for-each (cut display-entry <> "-") removed))) + (for-each (cut display-entry <> "-") removed) + (newline))) (display-diff profile gen1 gen2)) |