X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fc-bs-a.m4;h=a050d2d41e1945a65e4a00fe85cbc95926ce9088;hb=f919324aee68ab32b44e12dd697d60c96f9aae86;hp=ceb26ae596918cadfefead56c4b54d8e94db9ad7;hpb=187cbb7550d4e58c38d289e6d5201c6fdcb0cf07;p=gnulib.git diff --git a/m4/c-bs-a.m4 b/m4/c-bs-a.m4 index ceb26ae59..a050d2d41 100644 --- a/m4/c-bs-a.m4 +++ b/m4/c-bs-a.m4 @@ -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)])