fhem.pl: fix \ if used in notify directly after the regexp

git-svn-id: https://svn.fhem.de/fhem/trunk@4283 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig
2013-11-24 11:34:19 +00:00
parent acfed48e31
commit 51ea9a1f36

View File

@@ -795,7 +795,7 @@ AnalyzeCommand($$)
{ {
my ($cl, $cmd) = @_; my ($cl, $cmd) = @_;
$cmd =~ s/^(\\\n|[ \t])*//;# Strip space or \\n at the begginning $cmd =~ s/^(\n|[ \t])*//;# Strip space or \n at the begginning
$cmd =~ s/[ \t]*$//; $cmd =~ s/[ \t]*$//;
Log 5, "Cmd: >$cmd<"; Log 5, "Cmd: >$cmd<";