=================================================================== RCS file: /cvs/mandoc/term_ascii.c,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -r1.15 -r1.16 --- mandoc/term_ascii.c 2011/05/17 22:32:45 1.15 +++ mandoc/term_ascii.c 2011/05/19 15:48:58 1.16 @@ -1,4 +1,4 @@ -/* $Id: term_ascii.c,v 1.15 2011/05/17 22:32:45 kristaps Exp $ */ +/* $Id: term_ascii.c,v 1.16 2011/05/19 15:48:58 kristaps Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons * @@ -37,8 +37,15 @@ #include "term.h" #include "main.h" +/* + * Sadly, this doesn't seem to be defined on systems even when they + * support it. For the time being, remove it and let those compiling + * the software decide for themselves what to use. + */ +#if 0 #if ! defined(__STDC_ISO_10646__) # undef USE_WCHAR +#endif #endif static struct termp *ascii_init(enum termenc, char *);