blob: 863ab11d20190cfa0e619eb02e1c12d6e6e58c4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
include start_color
call OK init_pair 3 $COLOR_YELLOW $COLOR_CYAN
call OK addch `\000d`
call OK chgat 5 $REVERSE 3 0
call OK refresh
compare chgat1.chk
call OK addch `\000e`
call OK refresh
compare chgat2.chk
call OK move 0 0
# The following should apply the attribute and colour to the whole line
call OK chgat -1 $UNDERSCORE 3 0
call OK refresh
compare chgat3.chk
|