This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- bind.c.backup 2016-08-10 19:52:17.000000000 +0900 | |
+++ bind.c 2016-08-11 01:24:41.000000000 +0900 | |
@@ -496,6 +496,7 @@ static SEXP NewBase(SEXP base, SEXP tag) | |
/* This isn't strictly correct as we do not know that all the | |
components of the name were correctly translated. */ | |
ans = mkCharCE(cbuf, CE_UTF8); | |
+ if (!ENC_KNOWN(base)) ans = mkCharCE(translateChar(ans), CE_NATIVE); | |
vmaxset(vmax); | |
} | |
else if (*CHAR(tag)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$reserved = 0; | |
$indent = 0; | |
while (<>) { | |
if ($reserved) { | |
$indent++; | |
$reserved = 0; | |
} | |
if (/^#if/) { |
OlderNewer