Stop separating uppercase and lowercase letters in alphabetical sorting

Stop separating uppercase and lowercase letters in alphabetical sorting

When sorting certain items (tokens are the first thing that comes to mind), uppercase and lowercase letters count as different "entities" and are not sorted together. So all the uppercase A tokens go first, then all the lowercase a tokens are in after that. This doesn't make any sense. Sorting should occur by letter regardless of the letter's case.