X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/adc954633908e3fc97dfa94c08f964e1bbb94086..a0250745de00aacfe03f82bdcc7e5e86f0768dd7:/sbr/check_charset.c diff --git a/sbr/check_charset.c b/sbr/check_charset.c index d6b8ca34..cc93273f 100644 --- a/sbr/check_charset.c +++ b/sbr/check_charset.c @@ -2,18 +2,18 @@ /* * check_charset.c -- routines for character sets * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. */ #include -#ifdef HAVE_LANGINFO_H -# include -#endif +#include + +/* Only get_charset() should use norm_charmap(), so hide its + declaration here. */ +char *norm_charmap(char *); /* * Get the current character set @@ -21,12 +21,7 @@ char * get_charset () { - char *charset = getenv ("MM_CHARSET"); -#if defined(HAVE_NL_LANGINFO) && defined(CODESET) - if (!charset) - charset = norm_charmap(nl_langinfo (CODESET)); -#endif - return charset; + return norm_charmap(nl_langinfo (CODESET)); }