3798d3797 < { 3806d3804 < } 4304c4302 < else if (current[Ustrlen(current)-1] == ':' && !Ustrchr(current, '=')) --- > else if (current[strlen(current)-1] == ':' && !Ustrchr(current, '=')) 4313c4311 < || (Ustrncmp(current, "hide", 4) == 0 && isspace(current[4])) --- > || Ustrncmp(current, "hide", 4) == 0 && isspace(current[4]) 4317,4318c4315 < p = Ustrchr(current, '='); < if (p) --- > if (p = Ustrchr(current, '='))