Просмотр исходного кода

* tscannerfile.readoptionalstate can handle also switches enclosed in (* ... *) comments

git-svn-id: trunk@33522 -
florian 9 лет назад
Родитель
Сommit
e566fe1938
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      compiler/scanner.pas

+ 2 - 2
compiler/scanner.pas

@@ -4231,7 +4231,7 @@ type
         if c=' ' then
          begin
            current_scanner.skipspace;
-           if c='}' then
+           if c in ['*','}'] then
              state:=fallback
            else
              begin
@@ -4244,7 +4244,7 @@ type
              end;
          end
         else
-          if c='}' then
+          if c in ['*','}'] then
             state:=fallback
           else
             state:=c;