Changeset 195 for trunk/Forms/UFormCheck.pas
- Timestamp:
- Jul 23, 2018, 12:30:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormCheck.pas
r194 r195 281 281 Inc(Index); 282 282 end; 283 if (Index + 1) < Length(Text) then AcronymCharAfter := Text[Index + 1]283 if (Index) < Length(Text) then AcronymCharAfter := Text[Index] 284 284 else AcronymCharAfter := ' '; 285 285 State := stNone; … … 347 347 State := stAcronymUsage; 348 348 Acronym := Text[Index]; 349 if (Index - 1) >= 0then AcronymCharBefore := Text[Index - 1]349 if (Index - 1) >= 1 then AcronymCharBefore := Text[Index - 1] 350 350 else AcronymCharBefore := ' '; 351 351 end; … … 362 362 and ((After = ' ') or (After = #10) or (After = #13) or (After = ',') or 363 363 (After = '.') or (After = ';') or (After = '(') or (After = ')')); 364 365 364 end; 366 365
Note:
See TracChangeset
for help on using the changeset viewer.