From 6fd9c6f98e568a360a5378d033e0c5859b20de8d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 12 Apr 2006 07:15:21 +0000 Subject: [PATCH] (build_type_arg): Set re_syntax_options to a value that is compatible with what POSIX requires. --- src/nl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nl.c b/src/nl.c index f17f7149a7..7aad2e8f24 100644 --- a/src/nl.c +++ b/src/nl.c @@ -253,6 +253,7 @@ build_type_arg (char **typep, struct re_pattern_buffer *regexp, char *fastmap) regexp->allocated = 0; regexp->fastmap = fastmap; regexp->translate = NULL; + re_syntax_options = RE_SYNTAX_POSIX_BASIC & ~RE_CONTEXT_INVALID_DUP; errmsg = re_compile_pattern (optarg, strlen (optarg), regexp); if (errmsg) error (EXIT_FAILURE, 0, "%s", errmsg); -- 2.47.2