* build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
[gnulib.git] / m4 / c-bs-a.m4
index ceb26ae..a050d2d 100644 (file)
@@ -1,20 +1,23 @@
-#serial 1
+# c-bs-a.m4 serial 5
 
-dnl From Paul Eggert.
+# 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.
 
-AC_DEFUN(AC_C_BACKSLASH_A,
+# 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([],
      [
-      changequote(, ) dnl
 #if '\a' == 'a'
       syntax error;
 #endif
       char buf['\a' == 'a' ? -1 : 1];
       buf[0] = '\a';
       return buf[0] != "\a"[0];
-      changequote([, ])dnl
      ],
      ac_cv_c_backslash_a=yes,
      ac_cv_c_backslash_a=no)])