mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-13 17:26:34 +00:00
;quit bug fixed
git-svn-id: https://svn.fhem.de/fhem/trunk@1527 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
ece9ec7aac
commit
f83eacdd0a
@ -685,7 +685,8 @@ AnalyzeCommandChain($$)
|
|||||||
|
|
||||||
$cmd =~ s/;;/SeMiCoLoN/g;
|
$cmd =~ s/;;/SeMiCoLoN/g;
|
||||||
@cmdList = split(";", $cmd);
|
@cmdList = split(";", $cmd);
|
||||||
while(my $subcmd = shift @cmdList) {
|
my $subcmd;
|
||||||
|
while(defined($subcmd = shift @cmdList)) {
|
||||||
$subcmd =~ s/SeMiCoLoN/;/g;
|
$subcmd =~ s/SeMiCoLoN/;/g;
|
||||||
my $lret = AnalyzeCommand($c, $subcmd);
|
my $lret = AnalyzeCommand($c, $subcmd);
|
||||||
push(@ret, $lret) if(defined($lret));
|
push(@ret, $lret) if(defined($lret));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user