More conversion development.

diff --git a/src/pcre2.h b/src/pcre2.h
index 40cf0d6..e11fd34 100644
--- a/src/pcre2.h
+++ b/src/pcre2.h
@@ -187,10 +187,10 @@
 #define PCRE2_CONVERT_POSIX_BASIC            0x00000004u
 #define PCRE2_CONVERT_POSIX_EXTENDED         0x00000008u
 #define PCRE2_CONVERT_GLOB                   0x00000010u
-#define PCRE2_CONVERT_GLOB_NO_DOT_SPECIAL    0x00000030u
-#define PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR 0x00000050u
-#define PCRE2_CONVERT_GLOB_NO_STARSTAR       0x00000090u
-#define PCRE2_CONVERT_GLOB_BASIC             0x000000f0u
+#define PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR 0x00000030u
+#define PCRE2_CONVERT_GLOB_NO_STARSTAR       0x00000050u
+#define PCRE2_CONVERT_GLOB_BASIC             0x00000070u
+#define PCRE2_CONVERT_GLOB_IGNORE_DOT_START  0x00000080u
 
 /* Newline and \R settings, for use in compile contexts. The newline values
 must be kept in step with values set in config.h and both sets must all be
diff --git a/src/pcre2.h.in b/src/pcre2.h.in
index 12e8b1e..fe28b51 100644
--- a/src/pcre2.h.in
+++ b/src/pcre2.h.in
@@ -187,10 +187,10 @@
 #define PCRE2_CONVERT_POSIX_BASIC            0x00000004u
 #define PCRE2_CONVERT_POSIX_EXTENDED         0x00000008u
 #define PCRE2_CONVERT_GLOB                   0x00000010u
-#define PCRE2_CONVERT_GLOB_NO_DOT_SPECIAL    0x00000030u
-#define PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR 0x00000050u
-#define PCRE2_CONVERT_GLOB_NO_STARSTAR       0x00000090u
-#define PCRE2_CONVERT_GLOB_BASIC             0x000000f0u
+#define PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR 0x00000030u
+#define PCRE2_CONVERT_GLOB_NO_STARSTAR       0x00000050u
+#define PCRE2_CONVERT_GLOB_BASIC             0x00000070u
+#define PCRE2_CONVERT_GLOB_IGNORE_DOT_START  0x00000080u
 
 /* Newline and \R settings, for use in compile contexts. The newline values
 must be kept in step with values set in config.h and both sets must all be
diff --git a/src/pcre2_convert.c b/src/pcre2_convert.c
index 645f6fb..f7b2d63 100644
--- a/src/pcre2_convert.c
+++ b/src/pcre2_convert.c
@@ -49,7 +49,7 @@
   PCRE2_CONVERT_POSIX_BASIC|PCRE2_CONVERT_POSIX_EXTENDED)
 
 #define ALL_OPTIONS (PCRE2_CONVERT_UTF|PCRE2_CONVERT_NO_UTF_CHECK| \
-  PCRE2_CONVERT_GLOB_NO_DOT_SPECIAL| \
+  PCRE2_CONVERT_GLOB_IGNORE_DOT_START| \
   PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR| \
   PCRE2_CONVERT_GLOB_NO_STARSTAR| \
   TYPE_OPTIONS)
diff --git a/src/pcre2test.c b/src/pcre2test.c
index e2af2c1..a75e553 100644
--- a/src/pcre2test.c
+++ b/src/pcre2test.c
@@ -402,7 +402,7 @@
 static convertstruct convertlist[] = {
   { "glob",                   PCRE2_CONVERT_GLOB },
   { "glob_basic",             PCRE2_CONVERT_GLOB_BASIC },
-  { "glob_no_dot_special",    PCRE2_CONVERT_GLOB_NO_DOT_SPECIAL }, 
+  { "glob_ignore_dot_start",  PCRE2_CONVERT_GLOB_IGNORE_DOT_START }, 
   { "glob_no_starstar",       PCRE2_CONVERT_GLOB_NO_STARSTAR }, 
   { "glob_no_wild_separator", PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR }, 
   { "posix_basic",            PCRE2_CONVERT_POSIX_BASIC },