annotate etc/custom/right.xpm @ 4421:69b803c646cd
Fail searches immediately if searching for non-representable characters.
2008-02-11 Aidan Kehoe <kehoea@parhasard.net>
* search.c (search_buffer):
In the event that a character is not representable in the buffer,
fail immediately. Prevents an assertion failure in the code to
deal with whether Boyer-Moore search can be used for such
characters.
2008-02-11 Aidan Kehoe <kehoea@parhasard.net>
* automated/case-tests.el (Assert):
New test case; thank you Michael Sperber.
author |
Aidan Kehoe <kehoea@parhasard.net> |
date |
Mon, 11 Feb 2008 22:34:51 +0100 |
parents |
43dd3413c7c7 |
children |
7910031dd78a |
rev |
line source |
155
|
1 /* XPM */
|
|
2 static char * right_xpm[] = {
|
|
3 "10 10 5 1",
|
|
4 " c Gray90",
|
|
5 ". c Gray90",
|
|
6 "X c none",
|
|
7 "o c Gray75",
|
|
8 "O c Gray40",
|
|
9 " .XXXXXXXX",
|
|
10 " ...XXXXXX",
|
|
11 " ....XXXX",
|
|
12 " oo....XX",
|
|
13 " oooo....",
|
|
14 " ooooOOOO",
|
|
15 " ooOOOOXX",
|
|
16 " OOOOXXXX",
|
|
17 " OOOXXXXXX",
|
|
18 " OXXXXXXXX"};
|