summaryrefslogtreecommitdiff
path: root/m4/c-bs-a.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-01-19 13:57:42 +0000
committerJim Meyering <jim@meyering.net>2000-01-19 13:57:42 +0000
commit469d21a9d38aa40bb48b3f10107a154896fdcb4f (patch)
tree3eb5dafb90ebc35bd6a419b7abc0347220dc900b /m4/c-bs-a.m4
parentddcb373abcdfb740849f60c2046777df12a905d6 (diff)
downloadcoreutils-469d21a9d38aa40bb48b3f10107a154896fdcb4f.tar.xz
Remove uses of changequote altogether.
Diffstat (limited to 'm4/c-bs-a.m4')
-rw-r--r--m4/c-bs-a.m48
1 files changed, 3 insertions, 5 deletions
diff --git a/m4/c-bs-a.m4 b/m4/c-bs-a.m4
index f2b87d9d5..d9e6e11e8 100644
--- a/m4/c-bs-a.m4
+++ b/m4/c-bs-a.m4
@@ -1,4 +1,4 @@
-#serial 2
+#serial 3
dnl From Paul Eggert.
@@ -6,16 +6,14 @@ 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)])
if test $ac_cv_c_backslash_a = yes; then