Mercurial > hg > xemacs-beta
annotate etc/recycle.xpm @ 4549:68d1ca56cffa
First part of interactive checks that coding systems encode regions.
2008-01-21 Aidan Kehoe <kehoea@parhasard.net>
* coding.el (decode-coding-string):
(encode-coding-string): Accept GNU's NOCOPY argument for
these. Todo; write compiler macros to use it.
(query-coding-warning-face): New face, to show unencodable
characters.
(default-query-coding-region-safe-charset-skip-chars-map):
New variable, a cache used by #'default-query-coding-region.
(default-query-coding-region): Default implementation of
#'query-coding-region, using the safe-charsets and safe-chars
coding systemproperties.
(query-coding-region): New function; can a given coding system
encode a given region?
(query-coding-string): New function; can a given coding system
encode a given string?
(unencodable-char-position): Function API taken from GNU; return
the first unencodable position given a string and coding system.
(encode-coding-char): Function API taken from GNU; return CHAR
encoded using CODING-SYSTEM, or nil if CODING-SYSTEM would trash
CHAR.
((unless (featurep 'mule)): Override the default
query-coding-region implementation on non-Mule.
* mule/mule-coding.el (make-8-bit-generate-helper): Eliminate a
duplicate comment.
(make-8-bit-choose-category): Simplify implementation.
(8-bit-fixed-query-coding-region): Implementation of
#'query-coding-region for coding systems created with
#'make-8-bit-coding-system.
(make-8-bit-coding-system): Initialise the #'query-coding-region
implementation for these character sets.
(make-8-bit-coding-system): Ditto for the compiler macro version
of this function.
* unicode.el (unicode-query-coding-skip-chars-arg): New variable,
used by unicode-query-coding-region, initialised in
mule/general-late.el.
(unicode-query-coding-region): New function, the
#'query-coding-region implementation for Unicode coding systems.
Initialise the query-coding-function property for the Unicode
coding systems to #'unicode-query-coding-region.
* mule/mule-charset.el (charset-skip-chars-string): New
function. Return a #'skip-chars-forward argument that skips all
characters in CHARSET.
(map-charset-chars): Function synced from GNU, modified to work
with XEmacs. Map FUNC across the int value charset ranges of
CHARSET.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 21 Jan 2008 22:51:21 +0100 |
parents | 3ecd8885ac67 |
children | 7910031dd78a |
rev | line source |
---|---|
428 | 1 /* XPM */ |
2 /* A recycle logo, artist unknown, converted to xpm by jwz */ | |
3 static char *recycle[] = { | |
4 /* width height ncolors chars_per_pixel x_hot y_hot */ | |
5 " 51 51 4 1 26 23", | |
6 /* colors */ | |
7 " c None m None", | |
8 "# c black m black", | |
9 "- c chartreuse1 m #7fff0f", | |
10 "@ c chartreuse4 m #4f8f0f", | |
11 /* pixels */ | |
12 " ", | |
13 " ################### ", | |
14 " ##------------##@@-@-## ", | |
15 " #-------------#@@@-@----# ", | |
16 " #-------------#@@@-@------# ", | |
17 " #------------#@@@-@-------# ", | |
18 " #-------------##@-@---------# ### ", | |
19 " #------------# #-@----------# ##@## ", | |
20 " #-------------# #@------------##-## ", | |
21 " #------------# #---------------# ", | |
22 " #-------------# #--------------# ", | |
23 " #------------# #------------@# ", | |
24 " #-------------# #------------# ", | |
25 " ##----------# #----------# ", | |
26 " ##--------# ##---------@# ", | |
27 " ##-----# ###-----------# ", | |
28 " ##---# ############## ### ", | |
29 " ############## ### ##--# ", | |
30 " #------------## # ##-----# ", | |
31 " ##-----------# ##-------# ", | |
32 " ##---------## ##----------# ", | |
33 " #----------# #------------# ", | |
34 " #------------# #-------------# ", | |
35 " #------------## #------------# ", | |
36 " #--------------# #-------------# ", | |
37 " #---------------# #------------# ", | |
38 " #------------#--## #------------# ", | |
39 " #-----------####-# #-----------# ", | |
40 " #-----------# ## ## #-----------# ", | |
41 " #---------# ## #---------# ", | |
42 " #---------# #-# #---------# ", | |
43 " #-------# #-# #-------# ", | |
44 " #-------# #--# #----@@## ", | |
45 " #-----############# #--############### ", | |
46 " #-----#@@@-@------# #----------------@# ", | |
47 " #---#@@@-@-------# #---------------@# ", | |
48 " #---#@@-@--------# #----------------@# ", | |
49 " #-#@@-@---------# #---------------@# ", | |
50 " #-#@@@----------# #----------------@# ", | |
51 " #@@@-----------# #----------------# ", | |
52 " #@@@-----------# #--------------@# ", | |
53 " #@@-----------# #-------------@# ", | |
54 " #------------# #-----------@# ", | |
55 " ##----------# #---------@## ", | |
56 " ########### #--####### ", | |
57 " #--# ", | |
58 " #-# ", | |
59 " #-# ", | |
60 " ## ", | |
61 " ## ", | |
62 " " | |
63 }; |