annotate etc/idd/drop @ 4483:7869173584fc
Error on over-long hex character escapes.
2008-07-16 Aidan Kehoe <kehoea@parhasard.net>
* lread.c (read_escape):
Error if we're handed an over-long hex character escape, something
which arises reasonably frequently in code written for GNU.
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Wed, 16 Jul 2008 22:36:03 +0200 |
parents |
6075d714658b |
children |
|
rev |
line source |
177
|
1 #define drop_width 16
|
|
2 #define drop_height 16
|
|
3 #define drop_x_hot 6
|
|
4 #define drop_y_hot 4
|
|
5 static unsigned char drop_bits[] = {
|
|
6 0x00, 0x00, 0xfe, 0x07, 0x02, 0x04, 0x02, 0x04, 0x42, 0x04, 0xc2, 0x04,
|
|
7 0xc2, 0x05, 0xc2, 0x07, 0xc2, 0x07, 0xc2, 0x0f, 0xfe, 0x1f, 0xc0, 0x07,
|
|
8 0xc0, 0x06, 0x00, 0x0c, 0x00, 0x1c, 0x00, 0x08};
|