summaryrefslogtreecommitdiff
path: root/guix/ui.scm
diff options
context:
space:
mode:
authorRoel Janssen <roel@gnu.org>2016-11-17 23:49:29 +0100
committerRoel Janssen <roel@gnu.org>2016-11-17 23:49:29 +0100
commit88bdbb2a0fd04e1fe5d390caf40697344d5de5b7 (patch)
treeeec0b3cfb1a8078e30ed2a3bc9147830fc1db550 /guix/ui.scm
parent1f9803c2a49e853ca5721f13888a61a816c4dc09 (diff)
downloadguix-patches-88bdbb2a0fd04e1fe5d390caf40697344d5de5b7.tar
guix-patches-88bdbb2a0fd04e1fe5d390caf40697344d5de5b7.tar.gz
guix package: Display newline after generation diffs.
* guix/ui.scm (display-profile-content-diff): Display an extra newline.
Diffstat (limited to 'guix/ui.scm')
-rw-r--r--guix/ui.scm3
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))