https://github.com/JuliaLang/julia
Raw File
Tip revision: b84990e1acee72ea3c3b05487996f9bb8be0db2f authored by Kristoffer Carlsson on 08 January 2021, 12:42:00 UTC
Set VERSION to 1.6.0-beta1 (#39120)
Tip revision: b84990e
julia_charmap.h
/* Array of {original codepoint, replacement codepoint} normalizations
   to perform on Julia identifiers, to canonicalize characters that
   are both easily confused and easily inputted by accident. */
static const uint32_t charmap[][2] = {
    { 0x025B, 0x03B5 }, // latin small letter open e -> greek small letter epsilon
    { 0x00B5, 0x03BC }, // micro sign -> greek small letter mu
};
back to top