Mercurial > hg > xemacs-beta
annotate etc/toolbar/spell-up.xpm @ 4468:a78d697ccd2c
Import and extend GNU's descr-text.el, supporting prefix argument for C-x =
2008-05-25 Aidan Kehoe <kehoea@parhasard.net>
* descr-text.el: New.
Taken from GNU's GPLV2 version of 2007-02-14, with modifications
for XEmacs support and extensions for Unihan.txt support and
db/dbm caches.
* simple.el (what-cursor-position):
Support an optional prefix argument, as does GNU, calling
#'describe-char to giving more detail on the character at point,
notably from UnicodeData and (in our case, optionally) Unihan.txt.
* syntax.el (syntax-after):
Make this available for the sake of #'describe-char.
* mule/mule-cmds.el (iso-2022-control-alist):
Make this available, for the sake of #'encoded-string-description
and #'describe-char.
* mule/mule-cmds.el (encoded-string-description):
Make this available, for the sake of #'describe-char.
* unicode.el (unicode-error-default-translation-table):
Make this a char table of type generic, not of type char. Makes it
possible to have the relevant logic in #'describe-char reasonably
clear; also, and this is undocumented, makes it much easier to
implement #'frob-unicode-errors-region. I should document this,
and revise #'frob-unicode-errors-region.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 25 May 2008 21:11:35 +0200 |
parents | 376386a54a3c |
children | 7910031dd78a |
rev | line source |
---|---|
0 | 1 /* XPM */ |
2 static char * dict[] = { | |
3 "28 28 6 1", | |
4 "X c Gray75 s backgroundToolBarColor", | |
5 "o c black", | |
6 "O c Gray90", | |
7 "+ c Gray40", | |
8 "@ c Gray60", | |
9 "# c white", | |
10 "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
11 "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
12 "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
13 "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
14 "XXXXXXoooooooooooooooooXXXXX", | |
15 "XXXXXoXoOOOOOOOOOOOOO+oXXXXX", | |
16 "XXXXXooooooooooooooooOoXXXXX", | |
17 "XXXXoXo++o@@@@@@o+++oOoXXXXX", | |
18 "XXXXXoo++o@@@@@@@o++oOoXXXXX", | |
19 "XXXXXoo++o@@@@@@@@o+oOoXXXXX", | |
20 "XXXXoXo++o@ooooooo@ooOoXXXXX", | |
21 "XXXXXoo++o@o#####o@@oOoXXXXX", | |
22 "XXXXXoo++o@ooooooo@@oOoXXXXX", | |
23 "XXXXoXo++o@@@@@@@@@@oO###XXX", | |
24 "XXXXXoo++o@ooooooo@@###++XXX", | |
25 "XXXXXoo++o@@@@@@@@####+XXXXX", | |
26 "XXXX#Xo++o@@@@@@####++oXXXXX", | |
27 "XXX###o++o@@@@####++oOoXXXXX", | |
28 "XX####o++o@@@####+@@oOoXXXXX", | |
29 "XX+####++o@####++@@ooOoXXXXX", | |
30 "XXX+####+o####+@@@o+oOoXXXXX", | |
31 "XXXX+########+@@@o++oooXXXXX", | |
32 "XXXXo+######+@@@o+++oXXXXXXX", | |
33 "XXXXXo+####+oooooooooXXXXXXX", | |
34 "XXXXXXX+##+XXXXXXXXXXXXXXXXX", | |
35 "XXXXXXXX++XXXXXXXXXXXXXXXXXX", | |
36 "XXXXXXXXXXXXXXXXXXXXXXXXXXXX", | |
37 "XXXXXXXXXXXXXXXXXXXXXXXXXXXX"}; |