]> Dogcows Code - chaz/tar/commitdiff
Change quoting to be compatible with future autoconf versions.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 16 Jan 2000 04:45:26 +0000 (04:45 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 16 Jan 2000 04:45:26 +0000 (04:45 +0000)
m4/c-bs-a.m4

index ceb26ae596918cadfefead56c4b54d8e94db9ad7..f2b87d9d5536a97578332dfb554424b875e8b225 100644 (file)
@@ -1,4 +1,4 @@
-#serial 1
+#serial 2
 
 dnl From Paul Eggert.
 
@@ -6,16 +6,16 @@ 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
+     changequote(<<, >>)dnl
+     <<
 #if '\a' == 'a'
       syntax error;
 #endif
       char buf['\a' == 'a' ? -1 : 1];
       buf[0] = '\a';
       return buf[0] != "\a"[0];
-      changequote([, ])dnl
-     ],
+     >>,
+     changequote([, ])dnl
      ac_cv_c_backslash_a=yes,
      ac_cv_c_backslash_a=no)])
   if test $ac_cv_c_backslash_a = yes; then
This page took 0.026484 seconds and 4 git commands to generate.