- Change the wctype wrappers to take wchar_t's again, as they
still work the same way with them. This also fixes
compilation on Mac OS X 10.4.1, which doesn't seem to define a
- wint_t type. (DLR, problem found by Emily Jackson)
+ wint_t type. (DLR, found by Emily Jackson)
- Add the ability to convert typed tabs to spaces using
the -E/--tabstospaces command line options, the "tabstospaces"
rcfile option, and the toggle Meta-E. Note that this doesn't
fi
if test x$enable_utf8 != xno && \
- test x$CURSES_LIB_WIDE = xyes && \
- test x$ac_cv_func_iswalnum = xyes && \
- test x$ac_cv_func_iswpunct = xyes && \
- (test x$ac_cv_func_iswblank = xyes || test x$ac_cv_func_iswspace = xyes) && \
- test x$ac_cv_func_mblen = xyes && \
- test x$ac_cv_func_mbstowcs = xyes && \
- test x$ac_cv_func_mbtowc = xyes && \
- test x$ac_cv_func_wctomb = xyes && \
- test x$ac_cv_func_wcwidth = xyes; then
+ test x$CURSES_LIB_WIDE = xyes && \
+ test x$ac_cv_func_iswalnum = xyes && \
+ test x$ac_cv_func_iswpunct = xyes && \
+ (test x$ac_cv_func_iswblank = xyes || test x$ac_cv_func_iswspace = xyes) && \
+ test x$ac_cv_func_mblen = xyes && \
+ test x$ac_cv_func_mbstowcs = xyes && \
+ test x$ac_cv_func_mbtowc = xyes && \
+ test x$ac_cv_func_wctomb = xyes && \
+ test x$ac_cv_func_wcwidth = xyes; then
AC_DEFINE(NANO_WIDE, 1, [Define this if your system has sufficient wide character support (a wide curses library, iswalnum(), iswpunct(), iswblank() or iswspace(), mblen(), mbstowcs(), mbtowc(), wctomb(), and wcwidth()).])
else
if test x$enable_utf8 = xyes; then