Skip to content
Snippets Groups Projects
Commit e4d10f38 authored by Johann Koenig's avatar Johann Koenig Committed by Gerrit Code Review
Browse files

Merge "Split macro strings on whitespace"

parents 26a1ad60 53d79784
No related branches found
No related tags found
No related merge requests found
......@@ -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";
......
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