https://github.com/JuliaLang/julia
Raw File
Tip revision: b8591c6a819117ec69bf37ef9754420af42810ba authored by Martin Holters on 01 March 2019, 11:05:54 UTC
Fix `-`, `conj`, and `conj!` for sparse matrices with invalid entries in `nzval` (#31187)
Tip revision: b8591c6
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