Changeset 58 for trunk


Ignore:
Timestamp:
Apr 26, 2014, 10:20:38 AM (10 years ago)
Author:
chronos
Message:
  • Fixed: Wrong occurence limit checking.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Languages/LazFuckIDE.cs.po

    r52 r58  
    55"POT-Creation-Date: \n"
    66"PO-Revision-Date: \n"
    7 "Last-Translator: Jiří Hajda <robie@centrum.cz>\n"
     7"Last-Translator: Chronos <robie@centrum.cz>\n"
    88"Language-Team: \n"
    99"MIME-Version: 1.0\n"
    1010"Content-Transfer-Encoding: 8bit\n"
     11"X-Generator: Poedit 1.5.4\n"
     12"Language: cs\n"
    1113
    1214#: tcompiledform.caption
     
    180182#: tformsourcecode.ageneratenumber.caption
    181183msgid "Generate number"
    182 msgstr "Generopvat číslo"
     184msgstr "Generovat číslo"
    183185
    184186#: tformsourcecode.apastefromclipboard.caption
     
    493495msgctxt "tmainform.toolbuttontarget.caption"
    494496msgid "Target select"
    495 msgstr ""
     497msgstr "VÃœběr cíle"
    496498
    497499#: tmainform.toolbuttontarget.hint
    498500msgctxt "tmainform.toolbuttontarget.hint"
    499501msgid "Target select"
    500 msgstr ""
     502msgstr "VÃœběr cíle"
    501503
    502504#: toptionsform.buttoncancel.caption
     
    713715msgid "Read input error"
    714716msgstr "Chyba čtení vstupu"
    715 
  • trunk/Target/UTarget.pas

    r53 r58  
    507507  Result := 1;
    508508  if Optimization = coNormal then
    509   while ((FProgramIndex + 1) <= Length(FProgram)) and (FProgram[FProgramIndex + 1] = C) do begin
     509  while ((FProgramIndex + 1) < Length(FProgram)) and (FProgram[FProgramIndex + 1] = C) do begin
    510510    Inc(Result);
    511511    Inc(FProgramIndex);
Note: See TracChangeset for help on using the changeset viewer.