Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 991 → Rev 992

/trunk_dos/OIDFILE.PAS
3,7 → 3,7
(************************************************)
(* OIDFILE.PAS *)
(* Author: Daniel Marschall *)
(* Revision: 2022-02-19 *)
(* Revision: 2022-10-10 *)
(* License: Apache 2.0 *)
(* This file contains: *)
(* - Functions to handle an OID ASCII format *)
252,9 → 252,12
 
if cmd = 'DESC' then
begin
if Length(oid^.Description) + Length(line) + 2 <= 255 then
begin
oid^.Description := oid^.Description + line + #13#10;
end;
end;
end;
 
(* Sort sub IDs *)
ListBubbleSortSubIds(oid);