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/cat.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/cat.c') diff --git a/src/cat.c b/src/cat.c index d09be30de..31eada9d7 100644 --- a/src/cat.c +++ b/src/cat.c @@ -505,6 +505,9 @@ main (int argc, char **argv) }; program_name = argv[0]; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); /* Parse command line options. */ -- cgit v1.2.3-54-g00ecf