From 715765a5487d2e37c4d48e216e6958883db6a41f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 9 Mar 1996 20:19:13 +0000 Subject: (main): Initialize for internationalized message support: call setlocale, bindtextdomain, and textdomain. --- src/split.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/split.c') diff --git a/src/split.c b/src/split.c index d589a9f9d..bdc89e551 100644 --- a/src/split.c +++ b/src/split.c @@ -370,6 +370,9 @@ main (int argc, char **argv) int digits_optind = 0; program_name = argv[0]; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); /* Parse command line options. */ -- cgit v1.2.3-54-g00ecf