Вернул назад в связи с Pullом

This commit is contained in:
Mikhalkovich Stanislav 2024-03-22 23:24:19 +03:00
parent a5f88251f5
commit 124ae0d87a
6 changed files with 13 additions and 7 deletions

View file

@ -15,7 +15,7 @@ internal static class RevisionClass
public const string Major = "3";
public const string Minor = "9";
public const string Build = "0";
public const string Revision = "3441";
public const string Revision = "3442";
public const string MainVersion = Major + "." + Minor;
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision;

View file

@ -1,4 +1,4 @@
%MINOR%=9
%REVISION%=3441
%COREVERSION%=0
%REVISION%=3442
%MINOR%=9
%MAJOR%=3

View file

@ -55,7 +55,7 @@ namespace LanguageIntegration
{
ParsersController.LoadStandardParsers();
// LoadAllLanguageKits();
LoadAllLanguageKits();
}
/// <summary>
@ -65,7 +65,7 @@ namespace LanguageIntegration
{
ParsersController.Parsers.Clear();
ParsersController.LoadStandardParsers();
// LoadParsersFromLanguageKits();
LoadParsersFromLanguageKits();
}
/// <summary>

View file

@ -1 +1 @@
3.9.0.3441
3.9.0.3442

View file

@ -1 +1 @@
!define VERSION '3.9.0.3441'
!define VERSION '3.9.0.3442'

View file

@ -7248,7 +7248,10 @@ end;
procedure Println(params args: array of object);
begin
if args.Length = 0 then
begin
Writeln;
exit;
end;
for var i := 0 to args.length - 2 do
if PrintDelimDefault<>'' then
Write(args[i], PrintDelimDefault)
@ -7259,7 +7262,10 @@ end;
procedure Print(f: Text; params args: array of object);
begin
if args.Length = 0 then
begin
Writeln(f);
exit;
end;
for var i := 0 to args.length - 1 do
if PrintDelimDefault<>'' then
Write(f, args[i], PrintDelimDefault)