guix package: Display newline after generation diffs.

* guix/ui.scm (display-profile-content-diff): Display an extra newline.
This commit is contained in:
Roel Janssen 2016-11-17 23:49:29 +01:00
parent 1f9803c2a4
commit 88bdbb2a0f
No known key found for this signature in database
GPG key ID: C3EC1DCA843072E1

View file

@ -1094,7 +1094,8 @@ (define (display-diff profile old new)
(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))