From 10c96c43ac7f6465fef64f5d46797853bdc0b155 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 12 Mar 1996 03:08:30 +0000 Subject: (main): Initialize for internationalized message support: call setlocale, bindtextdomain, and textdomain. --- src/rmdir.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/rmdir.c') diff --git a/src/rmdir.c b/src/rmdir.c index 2902b2734..e091fd063 100644 --- a/src/rmdir.c +++ b/src/rmdir.c @@ -102,6 +102,10 @@ main (int argc, char **argv) int optc; program_name = argv[0]; + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + empty_paths = 0; while ((optc = getopt_long (argc, argv, "p", longopts, (int *) 0)) != EOF) -- cgit v1.2.3-54-g00ecf