Skip to content
Snippets Groups Projects
Commit fd896f62 authored by rswindell's avatar rswindell
Browse files

attrstr() now supports lowercase Ctrl-A codes.

parent 90923142
No related branches found
No related tags found
No related merge requests found
......@@ -901,7 +901,7 @@ uchar attrstr(char *str)
atr=LIGHTGRAY;
while(str[l]) {
switch(str[l]) {
switch(toupper(str[l])) {
case 'H': /* High intensity */
atr|=HIGH;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment