Bugfix: Properly parse commands like “move workspace torrent” (Thanks rasi)

fixes #955
This commit is contained in:
Michael Stapelberg
2013-02-19 00:27:55 +01:00
parent 29c027db3b
commit 9bfe6a6236
3 changed files with 8 additions and 4 deletions

View File

@ -84,14 +84,14 @@ for my $line (@lines) {
# Cleanup the identifier (if any).
$identifier =~ s/^\s*(\S+)\s*=\s*$/$1/g;
# Cleanup the tokens (remove whitespace).
$tokens =~ s/\s*//g;
# The default action is to stay in the current state.
$action = $current_state if length($action) == 0;
#say "identifier = *$identifier*, token = *$tokens*, action = *$action*";
for my $token (split(',', $tokens)) {
# Cleanup trailing/leading whitespace.
$token =~ s/^\s*//g;
$token =~ s/\s*$//g;
my $store_token = {
token => $token,
identifier => $identifier,