diff options
author | Karl Williamson <khw@cpan.org> | 2016-11-28 15:22:08 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-11-28 17:15:24 -0700 |
commit | f28f4d2a3736f60f4eb285910b24e2cce4656382 (patch) | |
tree | 9f016e2b570d920e940cab00599942a825eb728b /embedvar.h | |
parent | afc4976faee3dbcd0f85100736d54a8694d26645 (diff) | |
download | perl-f28f4d2a3736f60f4eb285910b24e2cce4656382.tar.gz |
Change name of PL_ variable
This variable really means the character that replaces any embedded NULs
when doing collation. Change the name accordingly. (Embedded NULs must
be replaced because the libc function strxfrm is used, and it operates
on C strings which have no embedded NULs.)
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embedvar.h b/embedvar.h index 575b755640..c413932967 100644 --- a/embedvar.h +++ b/embedvar.h @@ -307,9 +307,9 @@ #define PL_stderrgv (vTHX->Istderrgv) #define PL_stdingv (vTHX->Istdingv) #define PL_strtab (vTHX->Istrtab) +#define PL_strxfrm_NUL_replacement (vTHX->Istrxfrm_NUL_replacement) #define PL_strxfrm_is_behaved (vTHX->Istrxfrm_is_behaved) #define PL_strxfrm_max_cp (vTHX->Istrxfrm_max_cp) -#define PL_strxfrm_min_char (vTHX->Istrxfrm_min_char) #define PL_sub_generation (vTHX->Isub_generation) #define PL_subline (vTHX->Isubline) #define PL_subname (vTHX->Isubname) |