From: Lasse Collin Date: Sat, 17 Feb 2024 21:07:35 +0000 (+0200) Subject: xz: Tweak comments. X-Git-Tag: v5.4.7~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c9a3e7b3f70b214cfdc2aada90d28a54466a5db;p=thirdparty%2Fxz.git xz: Tweak comments. (cherry picked from commit 7312dfbb02197c7f990c7a3cefd027a9387d1473) --- diff --git a/src/xz/main.c b/src/xz/main.c index 9c2920b7..9270925e 100644 --- a/src/xz/main.c +++ b/src/xz/main.c @@ -160,11 +160,13 @@ main(int argc, char **argv) InitializeCriticalSection(&exit_status_cs); #endif - // Set up the progname variable. + // Set up the progname variable needed for messages. tuklib_progname_init(argv); // Initialize the file I/O. This makes sure that // stdin, stdout, and stderr are something valid. + // This must be done before we might open any files + // even indirectly like locale and gettext initializations. io_init(); // Set up the locale and message translations.