Skip to content

Commit e09c5f1

Browse files
committed
Fixed an issue with the key loop expansion token <KEY_ISAMC_SPEC> which was incrooectly processing duplicate key definitions.
1 parent 56db709 commit e09c5f1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CodeGenEngine/TokenExpanders/TokenExpanderKeyLoop.dbl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ namespace CodeGen.Engine
303303

304304
;;Duplicates?
305305
using k.Duplicates select
306-
(RpsKeyDuplicates.NoDuplicates),
306+
(RpsKeyDuplicates.Duplicates),
307307
begin
308308
sb.Append(",DUPS")
309309
;TODO: This needs suppressing if we're generating this for OpenVMS
@@ -314,7 +314,7 @@ namespace CodeGen.Engine
314314
sb.Append(",ATEND")
315315
endusing
316316
end
317-
(RpsKeyDuplicates.Duplicates),
317+
(RpsKeyDuplicates.NoDuplicates),
318318
sb.Append(",NODUPS")
319319
endusing
320320

0 commit comments

Comments
 (0)