[librep] s/can't/cannot/ s/don'/do not/



commit d3000d74300dc2f9626e9c108c0ef24ec8e4a0bf
Author: chrisb <zanghar freenet de>
Date:   Sat Sep 12 14:56:35 2009 +0200

    s/can't/cannot/ s/don'/do not/

 ChangeLog    |    5 +++++
 configure.in |   20 ++++++++++----------
 2 files changed, 15 insertions(+), 10 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 3ddbaec..6d5120f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-12  Christopher Bratusek <zanghar freenet de>
+	* configure.in: s/can't/cannot/
+	                s/don't/do not/
+			-- to prevent syntax highlighting errors (eg: in geany/vim)
+
 2009-09-10  Christopher Bratusek <zanghar freenet de>
 	* configure.in: fallback to old ffi check if there's no libffi.pc [Vincent Untz]
 
diff --git a/configure.in b/configure.in
index acafd63..e2f4c2d 100644
--- a/configure.in
+++ b/configure.in
@@ -111,7 +111,7 @@ AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h sys/utsname.h unistd.h siginfo.h
 
 dnl Check for GNU MP library and header files
 AC_ARG_WITH(gmp,
- [  --without-gmp		  Don't use GMP for bignum/rational numbers],
+ [  --without-gmp		  Do not use GMP for bignum/rational numbers],
  [], [with_gmp=maybe])
 
 GMP_LIBS="-lm"
@@ -140,7 +140,7 @@ if test "$with_gmp" != "no"; then
     AC_CHECK_FUNC(__gmp_randinit, AC_DEFINE(HAVE_GMP_RANDINIT, 1, [Have randinit in libgmp]))
     LIBS="$_libs"
   elif test "$with_gmp" != "no"; then
-    AC_MSG_ERROR([Can't find GMP (--without-gmp for cut-down non-GMP build)])
+    AC_MSG_ERROR([cannot find GMP (--without-gmp for cut-down non-GMP build)])
   fi
 fi
 AC_SUBST(GMP_LIBS)
@@ -176,7 +176,7 @@ fi
 dnl Check for readline
 AC_ARG_WITH(readline,
  [  --with-readline         support fancy command input editing
-  --without-readline      Don't use readline], [], [with_readline=maybe])
+  --without-readline      Do not use readline], [], [with_readline=maybe])
 
 if test "$with_readline" != "no"; then
   dnl Save in case test with directory specified fails
@@ -209,7 +209,7 @@ if test "$with_readline" != "no"; then
 
   if test -z "$READLINE_LIBS"; then
     if test "$with_readline_prefix" = "yes"; then
-      AC_MSG_ERROR([Can't find readline libraries])
+      AC_MSG_ERROR([cannot find readline libraries])
     else
       CPPFLAGS=${_cppflags}
       LDFLAGS=${_ldflags}
@@ -223,7 +223,7 @@ FFI_MIN_VER=3.0
 
 AC_ARG_WITH(ffi,
  [  --with-ffi              Support for ffi
-  --without-ffi           Don't use ffi], [], [with_ffi=yes])
+  --without-ffi           Do not use ffi], [], [with_ffi=yes])
 
 if test "$with_ffi" != "no"; then
   PKG_CHECK_MODULES(LIBFFI, libffi >= $FFI_MIN_VER
@@ -232,7 +232,7 @@ if test "$with_ffi" != "no"; then
      AC_CHECK_HEADER([ffi.h],[LIBFFI_CFLAGS=],[LIBFFI_FOUND=no])
      AC_SEARCH_LIBS([ffi_call], [ffi],[LIBFFI_LIBS=-lffi],[LIBFFI_FOUND=no])
      if test "x${LIBFFI_FOUND}" = xno; then
-       AC_MSG_ERROR([can't locate libffi])
+       AC_MSG_ERROR([cannot locate libffi])
      fi
    ])
 fi
@@ -288,7 +288,7 @@ fi
 if test $dl_ok != no; then
   AC_DEFINE(HAVE_DYNAMIC_LOADING, 1, [Have dynamic Loading])
 else
-  AC_MSG_ERROR([can't figure out how to do dynamic loading])
+  AC_MSG_ERROR([cannot figure out how to do dynamic loading])
 fi
 
 dnl Checks for typedefs, structures, and compiler characteristics.
@@ -405,7 +405,7 @@ AC_MSG_RESULT([${aclocaldir}])
 AC_SUBST(aclocaldir)
 
 AC_ARG_ENABLE(continuations,
- [  --disable-continuations Don't include support for continuations
+ [  --disable-continuations Do not include support for continuations
 			   or multi-threading],
  [if test "$enableval" != "no"; then AC_DEFINE(WITH_CONTINUATIONS, 1, [Have continuations]) fi],
  [AC_DEFINE(WITH_CONTINUATIONS, 1, [Have continuations])])
@@ -415,7 +415,7 @@ AC_ARG_ENABLE(dballoc,
  [if test "$enableval" != "no"; then AC_DEFINE(DEBUG_SYS_ALLOC, 1, [Debug sys alloc]) fi])
 
 AC_ARG_ENABLE(dbsyms,
- [  --disable-dbsyms	  When writing debug output, don't translate
+ [  --disable-dbsyms	  When writing debug output, do not translate
 			   addresses to symbol names],
  [if test "$enableval" != "no"; then AC_DEFINE(DB_RESOLVE_SYMBOLS, 1, [DB resolve symbols]) fi],
  [AC_DEFINE(DB_RESOLVE_SYMBOLS, 1, [DB resolve symbols])])
@@ -455,7 +455,7 @@ if test "${with_value_type}" = "undef"; then
 	     [with_value_type="long long int"])
 fi
 if test "${with_value_type}" = "undef"; then
-  AC_MSG_ERROR([can't find Lisp value type; set --with-value-type (see README)])
+  AC_MSG_ERROR([cannot find Lisp value type; set --with-value-type (see README)])
 fi
 AC_MSG_RESULT([${with_value_type}])
 AC_DEFINE_UNQUOTED(rep_PTR_SIZED_INT, ${with_value_type}, [Have ptr sized int])



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]