Example:
:::cobol
IDENTIFICATION DIVISION.
PROGRAM-ID. prog.
DATA DIVISION.
SCREEN SECTION.
01 scr.
03 VALUE "Hello, again!".
PROCEDURE DIVISION.
DISPLAY "hello" AT LINE 4 COL 4
DISPLAY scr
ACCEPT OMITTED
.
This should result in "Hello, again!" be displayed at line 1, column 1, but instead it displays it at the current cursor position, by "hello".
Fixed in [r769].