diff options
| -rw-r--r-- | guix/ui.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index edd04daa81f..9e0fa26d194 100644 --- a/guix/ui.scm +++ b/guix/ui.scm | |||
| @@ -302,6 +302,13 @@ exiting. ARGS is the list of arguments received by the 'throw' handler." | |||
| 302 | 302 | ||
| 303 | (define (initialize-guix) | 303 | (define (initialize-guix) |
| 304 | "Perform the usual initialization for stand-alone Guix commands." | 304 | "Perform the usual initialization for stand-alone Guix commands." |
| 305 | ;; By default don't annoy users with deprecation warnings. In practice, | ||
| 306 | ;; 'define-deprecated' in (ice-9 deprecated) arranges so that those warnings | ||
| 307 | ;; are emitted at expansion-time only, but there are cases where they could | ||
| 308 | ;; slip through, for instance when interpreting code. | ||
| 309 | (unless (getenv "GUILE_WARN_DEPRECATED") | ||
| 310 | (debug-disable 'warn-deprecated)) | ||
| 311 | |||
| 305 | (install-locale) | 312 | (install-locale) |
| 306 | (textdomain %gettext-domain) | 313 | (textdomain %gettext-domain) |
| 307 | 314 | ||
