| LEFT | RIGHT |
| 1 /* | 1 /* |
| 2 | 2 |
| 3 Unicode implementation based on original code by Fredrik Lundh, | 3 Unicode implementation based on original code by Fredrik Lundh, |
| 4 modified by Marc-Andre Lemburg <mal@lemburg.com> according to the | 4 modified by Marc-Andre Lemburg <mal@lemburg.com> according to the |
| 5 Unicode Integration Proposal (see file Misc/unicode.txt). | 5 Unicode Integration Proposal (see file Misc/unicode.txt). |
| 6 | 6 |
| 7 Major speed upgrades to the method implementations at the Reykjavik | 7 Major speed upgrades to the method implementations at the Reykjavik |
| 8 NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke. | 8 NeedForSpeed sprint, by Fredrik Lundh and Andrew Dalke. |
| 9 | 9 |
| 10 Copyright (c) Corporation for National Research Initiatives. | 10 Copyright (c) Corporation for National Research Initiatives. |
| (...skipping 10036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 10047 } | 10047 } |
| 10048 #endif | 10048 #endif |
| 10049 | 10049 |
| 10050 | 10050 |
| 10051 /* | 10051 /* |
| 10052 Local variables: | 10052 Local variables: |
| 10053 c-basic-offset: 4 | 10053 c-basic-offset: 4 |
| 10054 indent-tabs-mode: nil | 10054 indent-tabs-mode: nil |
| 10055 End: | 10055 End: |
| 10056 */ | 10056 */ |
| LEFT | RIGHT |