mirror of git://git.sv.gnu.org/nano.git
more cosmetic fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2748 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
parent
261da14301
commit
99466bfa71
|
@ -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
|
||||
|
|
18
configure.ac
18
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
|
||||
|
|
Loading…
Reference in New Issue