Revision 9aa766900f3dbf10843717543e033d86ab5a1c93 authored by Elliot Saba on 12 April 2023, 02:25:44 UTC, committed by Kristoffer on 13 April 2023, 13:15:43 UTC
Fix imaging value for generating sysimages for multiple targets

(cherry picked from commit fc4b079f6985de0e01c153d030e246f1a6332be2)
1 parent eb764cc
Raw File
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.

   Important: when this table is updated, also update the corresponding table
              in base/strings/unicode.jl */
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
    { 0x00B7, 0x22C5 }, // middot char -> dot operator (#25098)
    { 0x0387, 0x22C5 }, // Greek interpunct -> dot operator (#25098)
    { 0x2212, 0x002D }, // minus -> hyphen-minus (#26193)
};
back to top