summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-02-04 14:11:08 -0700
committerKarl Williamson <khw@cpan.org>2019-02-05 11:44:29 -0700
commitb8df1494dd61a03039c2dccfa4b1c02a73dda991 (patch)
treef837f9edec3588539342cae647eec8b4fd980336 /intrpvar.h
parent756097427dff9d822fd551c79334ab4fd1dc65bd (diff)
downloadperl-b8df1494dd61a03039c2dccfa4b1c02a73dda991.tar.gz
Add variable for if the current UTF-8 locale is Turkic
It currently is always set false, until later in this series of commits.
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h
index fad1eaafbb..f604ef9426 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -262,6 +262,7 @@ PERLVAR(I, exit_flags, U8) /* was exit() unexpected, etc. */
PERLVAR(I, utf8locale, bool) /* utf8 locale detected */
PERLVAR(I, in_utf8_CTYPE_locale, bool)
PERLVAR(I, in_utf8_COLLATE_locale, bool)
+PERLVAR(I, in_utf8_turkic_locale, bool)
#if defined(USE_ITHREADS) && ! defined(USE_THREAD_SAFE_LOCALE)
PERLVARI(I, lc_numeric_mutex_depth, int, 0) /* Emulate general semaphore */
#endif