Also discard lines beginning with # for multiline messages

git-svn-id: trunk@38416 -
This commit is contained in:
pierre 2018-03-05 21:36:37 +00:00
parent a8617f37c1
commit 01154e1f55

View File

@ -102,7 +102,7 @@ begin
begin
if s=']' then
multiline:=false
else
else if (s[1] <> '#') then
inc(msgsize,length(s)+1); { +1 for linebreak }
end
else
@ -191,7 +191,7 @@ begin
ptxt^:=#0;
inc(ptxt);
end
else
else if (s[1] <> '#') then
begin
move(s[1],ptxt^,length(s));
inc(ptxt,length(s));