Mercurial > emacs
annotate lisp/mail/reply2.xpm @ 56228:4e0ea2b75232
(query-replace-read-args): Implement `\,' and `\#'
replacements here.
(query-replace-regexp): Doc string explaining this and the new
`\?' replacement. Remove `\,' and `\#' implementation here, as it
is better placed in `query-replace-read-args'.
(replace-regexp): Explain `\,', `\#' and `\?'.
(replace-match-data): New function for thorough reuse/destruction
of old match-data.
(replace-match-maybe-edit): Function for implementing `\?'
editing.
(perform-replace): Fix maintaining of the match stack including
already matched regions, implement `\?', fix various problems
with regions while editing and other stuff.
(replace-highlight): Simplified.
author | David Kastrup <dak@gnu.org> |
---|---|
date | Thu, 24 Jun 2004 10:26:24 +0000 |
parents | 2568d5a27317 |
children |
rev | line source |
---|---|
47730 | 1 /* XPM */ |
2 static char * mail_reply_xpm[] = { | |
3 /* columns rows colors chars-per-pixel */ | |
4 "24 24 9 1", | |
5 " c None", | |
6 ". c black", | |
7 "X c #673e666663d4", | |
8 "o c #eb46ea1de471", | |
9 "O c #a852a7bea3d2", | |
10 "+ c #ae51c17b9b26", | |
11 "@ c #8d4d97577838", | |
12 "# c #7c7c8b8b6e6e", | |
13 "$ c #5e0868be52d3", | |
14 /* pixels */ | |
15 " ", | |
16 " ", | |
17 " ", | |
18 " ", | |
19 " ", | |
20 " .... ", | |
21 " .....XooO. ", | |
22 " .....XOooooooO. ", | |
23 " .XOooooooooooXOO. ", | |
24 " .oXXooooooooOXOo. ", | |
25 " .OoOXXooooooXOoo. ", | |
26 " .oooOOXOooXXXooO. ", | |
27 " ........XXOoOXOo. ", | |
28 " ..++++@.ooooooXO. ", | |
29 " ..+@@@.oooooooXO. ", | |
30 " ..+@@@#.oooooooO.. ", | |
31 " ..++@@@#$.ooooO... ", | |
32 " .++++@@#.$.oO... ", | |
33 " .+@@@#.o.... ", | |
34 " .+@#$... ", | |
35 " .#$. ", | |
36 " .$. ", | |
37 " . ", | |
38 " "}; |