Invisible space vs. tab typo in emu/port/mkdevc

Issue #350 resolved
Valery Ushakov created an issue

mkdevc has an invisible typo in

collect && /^[^ \t]/{
                collect = 0;
}

That whitespace inside the character class regexp is actually a literal TAB character. Its counterpart below in

$0 ~ /^[^ \t]/

is a space character.

Comments (2)

  1. Log in to comment