diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-06-28 22:36:43 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-28 23:26:53 +0200 |
commit | 1acc5e11beb1b8eea9fe931455bf2c9a26a69aa3 (patch) | |
tree | 4a40b1f01cbfc42669872c10af89ee2bebb77efa /guix/scripts/processes.scm | |
parent | e1f2f3df84ecdff2b0f67d49ecb667d8c4a1ee26 (diff) |
processes: Write to $PAGER.
* guix/ui.scm (with-paginated-output-port): Export.
* guix/scripts/processes.scm (guix-processes): Use it instead of writing
directly to (current-output-port).
Diffstat (limited to 'guix/scripts/processes.scm')
-rw-r--r-- | guix/scripts/processes.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/guix/scripts/processes.scm b/guix/scripts/processes.scm index a2ab017490..01f7213e8c 100644 --- a/guix/scripts/processes.scm +++ b/guix/scripts/processes.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2018, 2019 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -231,7 +231,8 @@ List the current Guix sessions and their processes.")) cons '())) - (for-each (lambda (session) - (daemon-session->recutils session (current-output-port)) - (newline)) - (daemon-sessions))) + (with-paginated-output-port port + (for-each (lambda (session) + (daemon-session->recutils session port) + (newline port)) + (daemon-sessions)))) |