]> git.wh0rd.org Git - nano.git/commitdiff
more cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 21 Jun 2005 15:47:39 +0000 (15:47 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 21 Jun 2005 15:47:39 +0000 (15:47 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2748 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
configure.ac

index fd04ca7b1774dd5252f3cf4510ce752cfc58f06d..ff5544acf57a73e787327fd8913966fb97d07bef 100644 (file)
--- 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
index 24b5881972464aae591ee759eb699967ef8c0375..2d6fc5f43343e3ae7aa586d3de39630c4b193ac1 100644 (file)
@@ -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