projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c98849
)
Remove uses of changequote altogether.
author
Jim Meyering
<jim@meyering.net>
Wed, 19 Jan 2000 13:57:42 +0000
(13:57 +0000)
committer
Jim Meyering
<jim@meyering.net>
Wed, 19 Jan 2000 13:57:42 +0000
(13:57 +0000)
m4/c-bs-a.m4
patch
|
blob
|
history
diff --git
a/m4/c-bs-a.m4
b/m4/c-bs-a.m4
index f2b87d9d5536a97578332dfb554424b875e8b225..d9e6e11e808a8c20a97ac3133c09be87e2275fcb 100644
(file)
--- 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