+2006-06-29 Derek Price <derek@ximbiot.com>
+
+ * modules/c-bs-a: Removed - \a is C89.
+
2006-06-28 Bruno Haible <bruno@clisp.org>
* modules/wcwidth (Files): Add m4/wchar_t.m4.
+2006-06-29 Derek R. Price <derek@ximbiot.com>
+
+ * c-bs-a.m4: Removed.
+
2006-06-28 Derek R. Price <derek@ximbiot.com>
* savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
+++ /dev/null
-# c-bs-a.m4 serial 5
-
-# Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# From Paul Eggert.
-
-AC_DEFUN([AC_C_BACKSLASH_A],
-[
- AC_CACHE_CHECK([whether backslash-a works in strings], ac_cv_c_backslash_a,
- [AC_TRY_COMPILE([],
- [
-#if '\a' == 'a'
- syntax error;
-#endif
- char buf['\a' == 'a' ? -1 : 1];
- buf[0] = '\a';
- return buf[0] != "\a"[0];
- ],
- ac_cv_c_backslash_a=yes,
- ac_cv_c_backslash_a=no)])
- if test $ac_cv_c_backslash_a = yes; then
- AC_DEFINE(HAVE_C_BACKSLASH_A, 1,
- [Define if backslash-a works in C strings.])
- fi
-])