1--- src/gripes.c.orig	2008-07-01 18:33:05.000000000 -0700
2+++ src/gripes.c	2008-07-01 18:36:41.000000000 -0700
3@@ -47,19 +47,7 @@
4 	     * (or when debugging). Also accept en_ZA etc.
5 	     * No messages for C locale.
6 	     */
7-	    char *s, *lg;
8-	    s = getenv("NLSPATH");
9-	    lg = getenv("LANG");
10-	    if (!lg)
11-		    lg = getenv("LC_MESSAGES");
12-	    if (!lg)
13-		    lg = getenv("LC_ALL");
14-	    if (lg && strncmp(lg, "en", 2) && strcmp(lg, "C")) {
15-		fprintf(stderr,
16-		  "Cannot open the message catalog \"%s\" for locale \"%s\"\n"
17-		  "(NLSPATH=\"%s\")\n\n",
18-			mantexts, lg, s ? s : "<none>");
19-	    } else if (debug) {
20+	    if (debug) {
21 		fprintf(stderr,
22 "Looked whether there exists a message catalog %s, but there is none\n"
23 "(and for English messages none is needed)\n\n",
24