diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-06 07:19:39 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-10-06 07:19:39 +0000 |
commit | fe13a13eeccd4ce7418971a24318fc215b72d5b0 (patch) | |
tree | 2486134e928dceaecf5804e2e21da9bbf3065728 /utf8.h | |
parent | 001fcafeeb8954033cae08e785d6bc955d1b680a (diff) | |
download | perl-fe13a13eeccd4ce7418971a24318fc215b72d5b0.tar.gz |
fix globals caught by change#1927; builds and tests on Solaris
p4raw-link: @1927 on //depot/perl: eb07465ebe1238598e948058857ec948c6697f86
p4raw-id: //depot/perl@1936
Diffstat (limited to 'utf8.h')
-rw-r--r-- | utf8.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,6 +22,6 @@ EXTCONST unsigned char utf8skip[] = { EXTCONST unsigned char utf8skip[]; #endif -#define IN_UTF8 (curcop->op_private & HINT_UTF8) +#define IN_UTF8 (PL_curcop->op_private & HINT_UTF8) #define UTF8SKIP(s) utf8skip[*(U8*)s] |