浏览代码

compiler: remove UTF8 sequences from 2 comments + minor formatting

git-svn-id: trunk@21085 -
paul 13 年之前
父节点
当前提交
290295db3e
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      compiler/globtype.pas

+ 3 - 3
compiler/globtype.pas

@@ -323,10 +323,10 @@ interface
          m_advanced_records,    { advanced record syntax with visibility sections, methods and properties }
          m_advanced_records,    { advanced record syntax with visibility sections, methods and properties }
          m_isolike_unary_minus, { unary minus like in iso pascal: same precedence level as binary minus/plus }
          m_isolike_unary_minus, { unary minus like in iso pascal: same precedence level as binary minus/plus }
          m_systemcodepage,      { use system codepage as compiler codepage by default, emit ansistrings with system codepage }
          m_systemcodepage,      { use system codepage as compiler codepage by default, emit ansistrings with system codepage }
-         m_final_fields,        { allows declaring fields as "final", which means they must be initialised
+         m_final_fields,        { allows declaring fields as "final", which means they must be initialised
                                   in the (class) constructor and are constant from then on (same as final
                                   in the (class) constructor and are constant from then on (same as final
                                   fields in Java) }
                                   fields in Java) }
-         m_default_unicodestring { makes the default string type in $h+ mode unicodestring rather than
+         m_default_unicodestring { makes the default string type in $h+ mode unicodestring rather than
                                    ansistring; similarly, char becomes unicodechar rather than ansichar }
                                    ansistring; similarly, char becomes unicodechar rather than ansichar }
        );
        );
        tmodeswitches = set of tmodeswitch;
        tmodeswitches = set of tmodeswitch;
@@ -335,7 +335,7 @@ interface
        tapptype = (
        tapptype = (
          app_none,
          app_none,
          app_native,
          app_native,
-         app_gui,               { graphic user-interface application}
+         app_gui,       { graphic user-interface application}
          app_cui,       { console application}
          app_cui,       { console application}
          app_fs,        { full-screen type application (OS/2 and EMX only) }
          app_fs,        { full-screen type application (OS/2 and EMX only) }
          app_tool,      { tool application, (MPW tool for MacOS, MacOS only)}
          app_tool,      { tool application, (MPW tool for MacOS, MacOS only)}