Mercurial > emacs
annotate src/casefiddle.c @ 91011:7239c19e55e9
(xftfont_draw): If s->font_info != s->face->font_info,
create a temporal XftDraw object.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Wed, 22 Aug 2007 12:34:29 +0000 |
| parents | f55f9811f5d7 |
| children | 606f2d163a64 |
| rev | line source |
|---|---|
| 118 | 1 /* GNU Emacs case conversion functions. |
|
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 1985, 1994, 1997, 1998, 1999, 2001, 2002, 2003, 2004, |
| 75348 | 3 2005, 2006, 2007 Free Software Foundation, Inc. |
| 118 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
|
78260
922696f363b0
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
9 the Free Software Foundation; either version 3, or (at your option) |
| 118 | 10 any later version. |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
| 64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 20 Boston, MA 02110-1301, USA. */ | |
| 118 | 21 |
| 22 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
2822
diff
changeset
|
23 #include <config.h> |
| 118 | 24 #include "lisp.h" |
| 25 #include "buffer.h" | |
|
88351
aac41b50c875
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
40656
diff
changeset
|
26 #include "character.h" |
| 118 | 27 #include "commands.h" |
| 28 #include "syntax.h" | |
| 26839 | 29 #include "composite.h" |
|
39748
42b7a798ff79
Include keymap.h.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
34969
diff
changeset
|
30 #include "keymap.h" |
| 118 | 31 |
| 32 enum case_action {CASE_UP, CASE_DOWN, CASE_CAPITALIZE, CASE_CAPITALIZE_UP}; | |
| 17816 | 33 |
| 34 Lisp_Object Qidentity; | |
| 118 | 35 |
| 36 Lisp_Object | |
| 37 casify_object (flag, obj) | |
| 38 enum case_action flag; | |
| 39 Lisp_Object obj; | |
| 40 { | |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
41 register int c, c1; |
| 118 | 42 register int inword = flag == CASE_DOWN; |
| 43 | |
|
15170
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
44 /* If the case table is flagged as modified, rescan it. */ |
|
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
45 if (NILP (XCHAR_TABLE (current_buffer->downcase_table)->extras[1])) |
|
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
46 Fset_case_table (current_buffer->downcase_table); |
|
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
47 |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
48 if (INTEGERP (obj)) |
| 118 | 49 { |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
50 int flagbits = (CHAR_ALT | CHAR_SUPER | CHAR_HYPER |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
51 | CHAR_SHIFT | CHAR_CTL | CHAR_META); |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
52 int flags = XINT (obj) & flagbits; |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
53 int multibyte = ! NILP (current_buffer->enable_multibyte_characters); |
|
22506
2107e25fa56f
(casify_object): Cope with modifier bits in character.
Karl Heuer <kwzh@gnu.org>
parents:
21514
diff
changeset
|
54 |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
55 /* If the character has higher bits set |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
56 above the flags, return it unchanged. |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
57 It is not a real character. */ |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
58 if ((unsigned) XFASTINT (obj) > (unsigned) flagbits) |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
59 return obj; |
|
55743
4f33fa491183
(casify_object): Return OBJ unchanged if not real char.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
60 |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
61 c1 = XFASTINT (obj) & ~flagbits; |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
62 if (! multibyte) |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
63 MAKE_CHAR_MULTIBYTE (c1); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
64 c = DOWNCASE (c1); |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
65 if (inword) |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
66 XSETFASTINT (obj, c | flags); |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
67 else if (c == (XFASTINT (obj) & ~flagbits)) |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
68 { |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
69 if (! inword) |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
70 c = UPCASE1 (c1); |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
71 if (! multibyte) |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
72 MAKE_CHAR_UNIBYTE (c); |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
73 XSETFASTINT (obj, c | flags); |
| 118 | 74 } |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
75 return obj; |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
76 } |
|
20611
e351676e5044
(casify_object): Scan string by bytes and chars.
Richard M. Stallman <rms@gnu.org>
parents:
20543
diff
changeset
|
77 |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
78 if (STRINGP (obj)) |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
79 { |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
80 int multibyte = STRING_MULTIBYTE (obj); |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
81 int i, i_byte, len; |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
82 int size = SCHARS (obj); |
|
18005
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
83 |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
84 obj = Fcopy_sequence (obj); |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
85 for (i = i_byte = 0; i < size; i++, i_byte += len) |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
86 { |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
87 if (multibyte) |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
88 c = STRING_CHAR_AND_LENGTH (SDATA (obj) + i_byte, 0, len); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
89 else |
|
18136
015e9e4a90ed
(casify_object): Fix bug on handling a character
Kenichi Handa <handa@m17n.org>
parents:
18005
diff
changeset
|
90 { |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
91 c = SREF (obj, i_byte); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
92 len = 1; |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
93 MAKE_CHAR_MULTIBYTE (c); |
|
18136
015e9e4a90ed
(casify_object): Fix bug on handling a character
Kenichi Handa <handa@m17n.org>
parents:
18005
diff
changeset
|
94 } |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
95 c1 = c; |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
96 if (inword && flag != CASE_CAPITALIZE_UP) |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
97 c = DOWNCASE (c); |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
98 else if (!UPPERCASEP (c) |
|
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
99 && (!inword || flag != CASE_CAPITALIZE_UP)) |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
100 c = UPCASE1 (c1); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
101 if ((int) flag >= (int) CASE_CAPITALIZE) |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
102 inword = (SYNTAX (c) == Sword); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
103 if (c != c1) |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
104 { |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
105 if (! multibyte) |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
106 { |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
107 MAKE_CHAR_UNIBYTE (c); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
108 SSET (obj, i_byte, c); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
109 } |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
110 else if (ASCII_CHAR_P (c1) && ASCII_CHAR_P (c)) |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
111 SSET (obj, i_byte, c); |
|
59854
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
112 else |
|
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
113 { |
|
90534
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
114 Faset (obj, make_number (i), make_number (c)); |
|
2811bff46a36
(casify_object): Sync with HEAD.
Kenichi Handa <handa@m17n.org>
parents:
90294
diff
changeset
|
115 i_byte += CHAR_BYTES (c) - len; |
|
59854
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
116 } |
|
18005
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
117 } |
| 118 | 118 } |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
119 return obj; |
| 118 | 120 } |
|
71827
5e4428007299
(casify_object): Remove loop around wrong_type_argument.
Kim F. Storm <storm@cua.dk>
parents:
68651
diff
changeset
|
121 |
|
71970
7477595dfc6f
(casify_object): wrong_type_argument is no-return.
Kim F. Storm <storm@cua.dk>
parents:
71827
diff
changeset
|
122 wrong_type_argument (Qchar_or_string_p, obj); |
| 118 | 123 } |
| 124 | |
| 125 DEFUN ("upcase", Fupcase, Supcase, 1, 1, 0, | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
126 doc: /* Convert argument to upper case and return that. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
127 The argument may be a character or string. The result has the same type. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
128 The argument object is not altered--the value is a copy. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
129 See also `capitalize', `downcase' and `upcase-initials'. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
130 (obj) |
| 118 | 131 Lisp_Object obj; |
| 132 { | |
| 133 return casify_object (CASE_UP, obj); | |
| 134 } | |
| 135 | |
| 136 DEFUN ("downcase", Fdowncase, Sdowncase, 1, 1, 0, | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
137 doc: /* Convert argument to lower case and return that. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
138 The argument may be a character or string. The result has the same type. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
139 The argument object is not altered--the value is a copy. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
140 (obj) |
| 118 | 141 Lisp_Object obj; |
| 142 { | |
| 143 return casify_object (CASE_DOWN, obj); | |
| 144 } | |
| 145 | |
| 146 DEFUN ("capitalize", Fcapitalize, Scapitalize, 1, 1, 0, | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
147 doc: /* Convert argument to capitalized form and return that. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
148 This means that each word's first character is upper case |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
149 and the rest is lower case. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
150 The argument may be a character or string. The result has the same type. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
151 The argument object is not altered--the value is a copy. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
152 (obj) |
| 118 | 153 Lisp_Object obj; |
| 154 { | |
| 155 return casify_object (CASE_CAPITALIZE, obj); | |
| 156 } | |
|
9052
6de22822cf72
(upcase_initials): New function.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
157 |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
158 /* Like Fcapitalize but change only the initials. */ |
|
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
159 |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
160 DEFUN ("upcase-initials", Fupcase_initials, Supcase_initials, 1, 1, 0, |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
161 doc: /* Convert the initial of each word in the argument to upper case. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
162 Do not change the other letters of each word. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
163 The argument may be a character or string. The result has the same type. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
164 The argument object is not altered--the value is a copy. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
165 (obj) |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
166 Lisp_Object obj; |
|
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
167 { |
|
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
168 return casify_object (CASE_CAPITALIZE_UP, obj); |
|
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
169 } |
| 118 | 170 |
| 171 /* flag is CASE_UP, CASE_DOWN or CASE_CAPITALIZE or CASE_CAPITALIZE_UP. | |
| 172 b and e specify range of buffer to operate on. */ | |
| 173 | |
| 21514 | 174 void |
| 118 | 175 casify_region (flag, b, e) |
| 176 enum case_action flag; | |
| 177 Lisp_Object b, e; | |
| 178 { | |
| 179 register int c; | |
| 180 register int inword = flag == CASE_DOWN; | |
|
18005
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
181 register int multibyte = !NILP (current_buffer->enable_multibyte_characters); |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
182 int start, end; |
|
20543
4dbda4b7c66f
(casify_region): Scan in bytes and chars.
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
183 int start_byte, end_byte; |
| 26839 | 184 int changed = 0; |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
185 int opoint = PT; |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
186 int opoint_byte = PT_BYTE; |
| 118 | 187 |
| 188 if (EQ (b, e)) | |
| 189 /* Not modifying because nothing marked */ | |
| 190 return; | |
| 191 | |
|
15170
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
192 /* If the case table is flagged as modified, rescan it. */ |
|
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
193 if (NILP (XCHAR_TABLE (current_buffer->downcase_table)->extras[1])) |
|
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
194 Fset_case_table (current_buffer->downcase_table); |
|
0d698228e98c
(casify_region, casify_object):
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
195 |
| 118 | 196 validate_region (&b, &e); |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
197 start = XFASTINT (b); |
|
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
198 end = XFASTINT (e); |
|
72592
f6de516bbb4b
* buffer.h (struct buffer_text): New field chars_modiff.
Chong Yidong <cyd@stupidchicken.com>
parents:
71970
diff
changeset
|
199 modify_region (current_buffer, start, end, 0); |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
200 record_change (start, end - start); |
|
20543
4dbda4b7c66f
(casify_region): Scan in bytes and chars.
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
201 start_byte = CHAR_TO_BYTE (start); |
|
4dbda4b7c66f
(casify_region): Scan in bytes and chars.
Richard M. Stallman <rms@gnu.org>
parents:
18613
diff
changeset
|
202 end_byte = CHAR_TO_BYTE (end); |
| 118 | 203 |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
204 while (start < end) |
| 17816 | 205 { |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
206 int c2, len; |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
207 |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
208 if (multibyte) |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
209 { |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
210 c = FETCH_MULTIBYTE_CHAR (start_byte); |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
211 len = CHAR_BYTES (c); |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
212 } |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
213 else |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
214 { |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
215 c = FETCH_BYTE (start_byte); |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
216 MAKE_CHAR_MULTIBYTE (c); |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
217 len = 1; |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
218 } |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
219 c2 = c; |
|
18005
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
220 if (inword && flag != CASE_CAPITALIZE_UP) |
|
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
221 c = DOWNCASE (c); |
|
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
222 else if (!UPPERCASEP (c) |
|
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
223 && (!inword || flag != CASE_CAPITALIZE_UP)) |
|
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
224 c = UPCASE1 (c); |
|
ad95aa134d60
(casify_object): Handle multibyte characters.
Kenichi Handa <handa@m17n.org>
parents:
17816
diff
changeset
|
225 if ((int) flag >= (int) CASE_CAPITALIZE) |
| 89483 | 226 inword = ((SYNTAX (c) == Sword) && (inword || !SYNTAX_PREFIX (c))); |
| 26839 | 227 if (c != c2) |
| 17816 | 228 { |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
229 changed = 1; |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
230 if (! multibyte) |
| 17816 | 231 { |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
232 MAKE_CHAR_UNIBYTE (c); |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
233 FETCH_BYTE (start_byte) = c; |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
234 } |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
235 else if (ASCII_CHAR_P (c2) && ASCII_CHAR_P (c)) |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
236 FETCH_BYTE (start_byte) = c; |
|
90049
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
237 else |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
238 { |
|
90049
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
239 int tolen = CHAR_BYTES (c); |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
240 int j; |
| 26839 | 241 unsigned char str[MAX_MULTIBYTE_LENGTH]; |
| 17816 | 242 |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
243 CHAR_STRING (c, str); |
|
90049
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
244 if (len == tolen) |
| 17816 | 245 { |
|
57877
194fa92926e4
(casify_region): Handle changes in byte-length using replace_range_2.
Richard M. Stallman <rms@gnu.org>
parents:
57726
diff
changeset
|
246 /* Length is unchanged. */ |
|
90049
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
247 for (j = 0; j < len; ++j) |
|
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
248 FETCH_BYTE (start_byte + j) = str[j]; |
| 17816 | 249 } |
| 250 else | |
|
59854
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
251 { |
|
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
252 /* Replace one character with the other, |
|
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
253 keeping text properties the same. */ |
|
90049
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
254 replace_range_2 (start, start_byte, |
|
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
255 start + 1, start_byte + len, |
|
59854
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
256 str, 1, tolen, |
|
90049
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
257 0); |
|
73c7169fe4ff
(casify_region): Handle changes in byte-length
Kenichi Handa <handa@m17n.org>
parents:
89943
diff
changeset
|
258 len = tolen; |
|
59854
75a481e7d8f1
(casify_object): Enable changing characters of
Kenichi Handa <handa@m17n.org>
parents:
57877
diff
changeset
|
259 } |
| 17816 | 260 } |
| 261 } | |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
262 start++; |
|
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
263 start_byte += len; |
| 118 | 264 } |
| 265 | |
| 89483 | 266 if (PT != opoint) |
| 267 TEMP_SET_PT_BOTH (opoint, opoint_byte); | |
| 268 | |
| 26839 | 269 if (changed) |
| 270 { | |
|
89017
6a9e0cb7368b
(casify_object): Simplified. Handle the case that
Kenichi Handa <handa@m17n.org>
parents:
88426
diff
changeset
|
271 start = XFASTINT (b); |
| 26839 | 272 signal_after_change (start, end - start, end - start); |
| 273 update_compositions (start, end, CHECK_ALL); | |
| 274 } | |
| 118 | 275 } |
| 276 | |
| 277 DEFUN ("upcase-region", Fupcase_region, Supcase_region, 2, 2, "r", | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
278 doc: /* Convert the region to upper case. In programs, wants two arguments. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
279 These arguments specify the starting and ending character numbers of |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
280 the region to operate on. When used as a command, the text between |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
281 point and the mark is operated on. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
282 See also `capitalize-region'. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
283 (beg, end) |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
284 Lisp_Object beg, end; |
| 118 | 285 { |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
286 casify_region (CASE_UP, beg, end); |
| 118 | 287 return Qnil; |
| 288 } | |
| 289 | |
| 290 DEFUN ("downcase-region", Fdowncase_region, Sdowncase_region, 2, 2, "r", | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
291 doc: /* Convert the region to lower case. In programs, wants two arguments. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
292 These arguments specify the starting and ending character numbers of |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
293 the region to operate on. When used as a command, the text between |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
294 point and the mark is operated on. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
295 (beg, end) |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
296 Lisp_Object beg, end; |
| 118 | 297 { |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
298 casify_region (CASE_DOWN, beg, end); |
| 118 | 299 return Qnil; |
| 300 } | |
| 301 | |
| 302 DEFUN ("capitalize-region", Fcapitalize_region, Scapitalize_region, 2, 2, "r", | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
303 doc: /* Convert the region to capitalized form. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
304 Capitalized form means each word's first character is upper case |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
305 and the rest of it is lower case. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
306 In programs, give two arguments, the starting and ending |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
307 character positions to operate on. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
308 (beg, end) |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
309 Lisp_Object beg, end; |
| 118 | 310 { |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
311 casify_region (CASE_CAPITALIZE, beg, end); |
| 118 | 312 return Qnil; |
| 313 } | |
| 314 | |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
315 /* Like Fcapitalize_region but change only the initials. */ |
|
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
316 |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
317 DEFUN ("upcase-initials-region", Fupcase_initials_region, |
|
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
318 Supcase_initials_region, 2, 2, "r", |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
319 doc: /* Upcase the initial of each word in the region. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
320 Subsequent letters of each word are not changed. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
321 In programs, give two arguments, the starting and ending |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
322 character positions to operate on. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
323 (beg, end) |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
324 Lisp_Object beg, end; |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
325 { |
|
14063
ef7d4117c601
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Erik Naggum <erik@naggum.no>
parents:
12244
diff
changeset
|
326 casify_region (CASE_CAPITALIZE_UP, beg, end); |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
327 return Qnil; |
|
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
328 } |
| 118 | 329 |
| 330 Lisp_Object | |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
331 operate_on_word (arg, newpoint) |
| 118 | 332 Lisp_Object arg; |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
333 int *newpoint; |
| 118 | 334 { |
|
1505
4f138b03e5ab
* casefiddle.c (operate_on_word): Declare end to be an int, not a
Jim Blandy <jimb@redhat.com>
parents:
484
diff
changeset
|
335 Lisp_Object val; |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
336 int farend; |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
337 int iarg; |
| 118 | 338 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
40103
diff
changeset
|
339 CHECK_NUMBER (arg); |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
340 iarg = XINT (arg); |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15170
diff
changeset
|
341 farend = scan_words (PT, iarg); |
| 118 | 342 if (!farend) |
|
12089
f7cb17ca1815
(casify_region): Use explicit local vars for start
Karl Heuer <kwzh@gnu.org>
parents:
9299
diff
changeset
|
343 farend = iarg > 0 ? ZV : BEGV; |
| 118 | 344 |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15170
diff
changeset
|
345 *newpoint = PT > farend ? PT : farend; |
|
9299
e8c880f2723e
(casify_object, operate_on_word, Fupcase_word, Fdowncase_word,
Karl Heuer <kwzh@gnu.org>
parents:
9137
diff
changeset
|
346 XSETFASTINT (val, farend); |
| 118 | 347 |
| 348 return val; | |
| 349 } | |
| 350 | |
| 351 DEFUN ("upcase-word", Fupcase_word, Supcase_word, 1, 1, "p", | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
352 doc: /* Convert following word (or ARG words) to upper case, moving over. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
353 With negative argument, convert previous words but do not move. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
354 See also `capitalize-word'. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
355 (arg) |
| 118 | 356 Lisp_Object arg; |
| 357 { | |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
358 Lisp_Object beg, end; |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
359 int newpoint; |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15170
diff
changeset
|
360 XSETFASTINT (beg, PT); |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
361 end = operate_on_word (arg, &newpoint); |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
362 casify_region (CASE_UP, beg, end); |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
363 SET_PT (newpoint); |
| 118 | 364 return Qnil; |
| 365 } | |
| 366 | |
| 367 DEFUN ("downcase-word", Fdowncase_word, Sdowncase_word, 1, 1, "p", | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
368 doc: /* Convert following word (or ARG words) to lower case, moving over. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
369 With negative argument, convert previous words but do not move. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
370 (arg) |
| 118 | 371 Lisp_Object arg; |
| 372 { | |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
373 Lisp_Object beg, end; |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
374 int newpoint; |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15170
diff
changeset
|
375 XSETFASTINT (beg, PT); |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
376 end = operate_on_word (arg, &newpoint); |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
377 casify_region (CASE_DOWN, beg, end); |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
378 SET_PT (newpoint); |
| 118 | 379 return Qnil; |
| 380 } | |
| 381 | |
| 382 DEFUN ("capitalize-word", Fcapitalize_word, Scapitalize_word, 1, 1, "p", | |
|
40103
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
383 doc: /* Capitalize the following word (or ARG words), moving over. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
384 This gives the word(s) a first character in upper case |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
385 and the rest lower case. |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
386 With negative argument, capitalize previous words but do not move. */) |
|
6b389fb978bc
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
39748
diff
changeset
|
387 (arg) |
| 118 | 388 Lisp_Object arg; |
| 389 { | |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
390 Lisp_Object beg, end; |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
391 int newpoint; |
|
16039
855c8d8ba0f0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
15170
diff
changeset
|
392 XSETFASTINT (beg, PT); |
|
6221
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
393 end = operate_on_word (arg, &newpoint); |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
394 casify_region (CASE_CAPITALIZE, beg, end); |
|
c2d29681d218
(operate_on_word): Don't move point; store in *NEWPOINT.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
395 SET_PT (newpoint); |
| 118 | 396 return Qnil; |
| 397 } | |
| 398 | |
| 21514 | 399 void |
| 118 | 400 syms_of_casefiddle () |
| 401 { | |
| 17816 | 402 Qidentity = intern ("identity"); |
| 403 staticpro (&Qidentity); | |
| 118 | 404 defsubr (&Supcase); |
| 405 defsubr (&Sdowncase); | |
| 406 defsubr (&Scapitalize); | |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
407 defsubr (&Supcase_initials); |
| 118 | 408 defsubr (&Supcase_region); |
| 409 defsubr (&Sdowncase_region); | |
| 410 defsubr (&Scapitalize_region); | |
|
9053
4887fc1a2dda
(Fupcase_initials_region): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9052
diff
changeset
|
411 defsubr (&Supcase_initials_region); |
| 118 | 412 defsubr (&Supcase_word); |
| 413 defsubr (&Sdowncase_word); | |
| 414 defsubr (&Scapitalize_word); | |
| 415 } | |
| 416 | |
| 21514 | 417 void |
| 118 | 418 keys_of_casefiddle () |
| 419 { | |
| 420 initial_define_key (control_x_map, Ctl('U'), "upcase-region"); | |
| 484 | 421 Fput (intern ("upcase-region"), Qdisabled, Qt); |
| 118 | 422 initial_define_key (control_x_map, Ctl('L'), "downcase-region"); |
| 484 | 423 Fput (intern ("downcase-region"), Qdisabled, Qt); |
| 424 | |
| 118 | 425 initial_define_key (meta_map, 'u', "upcase-word"); |
| 426 initial_define_key (meta_map, 'l', "downcase-word"); | |
| 427 initial_define_key (meta_map, 'c', "capitalize-word"); | |
| 428 } | |
| 52401 | 429 |
| 430 /* arch-tag: 60a73c66-5489-47e7-a81f-cead4057c526 | |
| 431 (do not change this comment) */ |
