diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-21 15:30:31 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-21 23:09:55 +0100 |
commit | 3a0b2c6c6efd221341def2adf17279a9566555f7 (patch) | |
tree | 6bc1b8e0d0b3a9c5a88a6f40b4fec5829135dbd6 | |
parent | 1b7dd99738f17d3e3ebc29500bc475f9dd214ba3 (diff) | |
download | patches-3a0b2c6c6efd221341def2adf17279a9566555f7.tar patches-3a0b2c6c6efd221341def2adf17279a9566555f7.tar.gz |
deprecation: Send warnings to (current-error-port) by default.
* guix/deprecation.scm (deprecation-warning-port): Default
to (current-error-port).
-rw-r--r-- | guix/deprecation.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/deprecation.scm b/guix/deprecation.scm index 8d9e42758d..2f7c058940 100644 --- a/guix/deprecation.scm +++ b/guix/deprecation.scm @@ -33,7 +33,7 @@ (define deprecation-warning-port ;; Port where deprecation warnings go. - (make-parameter (current-warning-port))) + (make-parameter (current-error-port))) (define (source-properties->location-string properties) "Return a human-friendly, GNU-standard representation of PROPERTIES, a |