Commit e4d10f38 authored by Johann's avatar Johann Committed by Gerrit Code Review
Browse files

Merge "Split macro strings on whitespace"

Showing with 1 addition and 1 deletion
......@@ -188,7 +188,7 @@ while (<STDIN>)
$trimmed =~ s/,//g;
# string to array
@incoming_array = split(/ /, $trimmed);
@incoming_array = split(/\s+/, $trimmed);
print ".macro @incoming_array[0]\n";
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment