changeset 2253:be29eef00da3

(jm_INCLUDED_REGEX): Remove now-unnecessary uses of changequote.
author Jim Meyering <jim@meyering.net>
date Tue, 08 Feb 2000 15:08:26 +0000
parents ec0d447b7ec8
children ab4247b52179
files m4/regex.m4
diffstat 1 files changed, 3 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/m4/regex.m4
+++ b/m4/regex.m4
@@ -1,4 +1,4 @@
-#serial 5
+#serial 6
 
 dnl Initially derived from code in GNU grep.
 dnl Mostly written by Jim Meyering.
@@ -21,9 +21,7 @@
     AC_CACHE_CHECK([for working re_compile_pattern],
 		   jm_cv_func_working_re_compile_pattern,
       AC_TRY_RUN(
-	changequote(<<, >>)dnl
-	<<
-#include <stdio.h>
+[#include <stdio.h>
 #include <regex.h>
 	  int
 	  main ()
@@ -37,9 +35,7 @@
 	    /* This should fail with _Invalid character class name_ error.  */
 	    exit (s ? 0 : 1);
 	  }
-	>>,
-	changequote([, ])dnl
-
+	],
 	       jm_cv_func_working_re_compile_pattern=yes,
 	       jm_cv_func_working_re_compile_pattern=no,
 	       dnl When crosscompiling, assume it's broken.