From: Mike Guy Date: Tue, 22 May 2001 14:35:39 +0000 (+0100) Subject: Don't think about UTF8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=430eacda7860641881e4285c9bfc5967bd0fe0a3;p=p5sagit%2Fp5-mst-13.2.git Don't think about UTF8 Message-Id: p4raw-id: //depot/perl@10203 --- diff --git a/sv.h b/sv.h index a896b62..fe98cfa 100644 --- a/sv.h +++ b/sv.h @@ -204,7 +204,7 @@ perform the upgrade if necessary. See C. #define SVf_UTF8 0x20000000 /* SvPVX is UTF-8 encoded */ -#define SVf_THINKFIRST (SVf_READONLY|SVf_ROK|SVf_FAKE|SVf_UTF8) +#define SVf_THINKFIRST (SVf_READONLY|SVf_ROK|SVf_FAKE) #define SVf_OK (SVf_IOK|SVf_NOK|SVf_POK|SVf_ROK| \ SVp_IOK|SVp_NOK|SVp_POK)