The crazy styler

 

MetaEdit V5.0 Build 2138, Sep.06,2019

//Script:test_styler.mq4
void OnStart()
  {
//---
   int try=3;
   while(try>0)
     {
      try--;
      if(try==2)Print("i==2");
     }
  }
void func(int &i,double &d,string &s)
  {
   i=0;d=0;s=NULL;
   if(i==0)Print("i==0");
  }

After run the styler of MetaQuotes,it becomes as below:

//+------------------------------------------------------------------+
//|                                                      ProjectName |
//|                                      Copyright 2018, CompanyName |
//|                                       http://www.companyname.net |
//+------------------------------------------------------------------+

//Script:test_styler.mq4
void OnStart()
  {
//---
   int try
         =3;
   while(try
            >0)
        {
         try
            --;
         if(try
               ==2)Print("i==2");
        }
  }
void func(int &i,double &d,string &s)
  {
   i=0;
   d=0;
   s=NULL;
   if(i==0)
      Print("i==0");
  }
//+------------------------------------------------------------------+


The screenshot video is attached.

Files:
Crazy_Styler.zip  616 kb
 

I have to choose Google styler which I don't like.

Anybody has this issue?

 
Ziheng Zhuang:

I have to choose Google styler which I don't like.

Anybody has this issue?

Yeah I confirm.

It's getting worst.

 
Alain Verleyen:

Yeah I confirm.

It's getting worst.


It seems the admin refused to offer the old styler.

It is too bad.