Module Name: src Committed By: christos Date: Thu Apr 15 00:50:46 UTC 2010
Modified Files: src/lib/libedit/TEST: tc1.c Log Message: >From Jess Thrysoee: call setlocale so we can test UTF-8 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/libedit/TEST/tc1.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/lib/libedit/TEST/tc1.c diff -u src/lib/libedit/TEST/tc1.c:1.3 src/lib/libedit/TEST/tc1.c:1.4 --- src/lib/libedit/TEST/tc1.c:1.3 Fri Jul 17 08:25:52 2009 +++ src/lib/libedit/TEST/tc1.c Wed Apr 14 20:50:46 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: tc1.c,v 1.3 2009/07/17 12:25:52 christos Exp $ */ +/* $NetBSD: tc1.c,v 1.4 2010/04/15 00:50:46 christos Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)test.c 8.1 (Berkeley) 6/4/93"; #else -__RCSID("$NetBSD: tc1.c,v 1.3 2009/07/17 12:25:52 christos Exp $"); +__RCSID("$NetBSD: tc1.c,v 1.4 2010/04/15 00:50:46 christos Exp $"); #endif #endif /* not lint && not SCCSID */ @@ -57,6 +57,7 @@ #include <stdlib.h> #include <unistd.h> #include <dirent.h> +#include <locale.h> #include "histedit.h" @@ -130,6 +131,7 @@ History *hist; HistEvent ev; + (void) setlocale(LC_CTYPE, ""); (void) signal(SIGINT, sig); (void) signal(SIGQUIT, sig); (void) signal(SIGHUP, sig);