Make caret coloring support letters.

This commit is contained in:
GoldenTails 2020-12-06 04:28:12 -06:00
parent d004515d6a
commit 233990099d
1 changed files with 6 additions and 0 deletions

View File

@ -59,6 +59,12 @@ ATTRINLINE static FUNCINLINE char myfget_color(MYFILE *f)
if (c >= '0' && c <= '9')
return 0x80+(c-'0');
c = tolower(c);
if (c >= 'a' && c <= 'f')
return 0x80+10+(c-'a');
return 0x80; // Unhandled -- default to no color
}