diff --git a/ChangeLog b/ChangeLog index fd04ca7b..ff5544ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -87,7 +87,7 @@ CVS code - - 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 diff --git a/configure.ac b/configure.ac index 24b58819..2d6fc5f4 100644 --- a/configure.ac +++ b/configure.ac @@ -471,15 +471,15 @@ if test "x$GLIB_LIBS" != "x"; then 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