428
|
1 /* XEmacs case conversion functions.
|
|
2 Copyright (C) 1985, 1992, 1993, 1994, 1997, 1998 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: FSF 19.34, but substantially rewritten by Martin. */
|
|
22
|
|
23 #include <config.h>
|
|
24 #include "lisp.h"
|
|
25
|
|
26 #include "buffer.h"
|
|
27 #include "insdel.h"
|
|
28 #include "syntax.h"
|
|
29
|
|
30 enum case_action {CASE_UP, CASE_DOWN, CASE_CAPITALIZE, CASE_CAPITALIZE_UP};
|
|
31
|
|
32 static Lisp_Object
|
444
|
33 casify_object (enum case_action flag, Lisp_Object string_or_char,
|
|
34 Lisp_Object buffer)
|
428
|
35 {
|
|
36 struct buffer *buf = decode_buffer (buffer, 0);
|
|
37
|
|
38 retry:
|
|
39
|
444
|
40 if (CHAR_OR_CHAR_INTP (string_or_char))
|
428
|
41 {
|
|
42 Emchar c;
|
444
|
43 CHECK_CHAR_COERCE_INT (string_or_char);
|
|
44 c = XCHAR (string_or_char);
|
428
|
45 c = (flag == CASE_DOWN) ? DOWNCASE (buf, c) : UPCASE (buf, c);
|
|
46 return make_char (c);
|
|
47 }
|
|
48
|
444
|
49 if (STRINGP (string_or_char))
|
428
|
50 {
|
440
|
51 Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table);
|
665
|
52 Intbyte *storage =
|
|
53 alloca_array (Intbyte, XSTRING_LENGTH (string_or_char) * MAX_EMCHAR_LEN);
|
|
54 Intbyte *newp = storage;
|
|
55 Intbyte *oldp = XSTRING_DATA (string_or_char);
|
771
|
56 Intbyte *endp = oldp + XSTRING_LENGTH (string_or_char);
|
428
|
57 int wordp = 0, wordp_prev;
|
|
58
|
771
|
59 while (oldp < endp)
|
428
|
60 {
|
|
61 Emchar c = charptr_emchar (oldp);
|
|
62 switch (flag)
|
|
63 {
|
|
64 case CASE_UP:
|
|
65 c = UPCASE (buf, c);
|
|
66 break;
|
|
67 case CASE_DOWN:
|
|
68 c = DOWNCASE (buf, c);
|
|
69 break;
|
|
70 case CASE_CAPITALIZE:
|
|
71 case CASE_CAPITALIZE_UP:
|
|
72 wordp_prev = wordp;
|
|
73 wordp = WORD_SYNTAX_P (syntax_table, c);
|
|
74 if (!wordp) break;
|
|
75 if (wordp_prev)
|
|
76 {
|
|
77 if (flag == CASE_CAPITALIZE)
|
|
78 c = DOWNCASE (buf, c);
|
|
79 }
|
|
80 else
|
|
81 c = UPCASE (buf, c);
|
|
82 break;
|
|
83 }
|
|
84
|
|
85 newp += set_charptr_emchar (newp, c);
|
|
86 INC_CHARPTR (oldp);
|
|
87 }
|
|
88
|
|
89 return make_string (storage, newp - storage);
|
|
90 }
|
|
91
|
444
|
92 string_or_char = wrong_type_argument (Qchar_or_string_p, string_or_char);
|
428
|
93 goto retry;
|
|
94 }
|
|
95
|
|
96 DEFUN ("upcase", Fupcase, 1, 2, 0, /*
|
444
|
97 Convert STRING-OR-CHAR to upper case and return that.
|
|
98 STRING-OR-CHAR may be a character or string. The result has the same type.
|
|
99 STRING-OR-CHAR is not altered--the value is a copy.
|
428
|
100 See also `capitalize', `downcase' and `upcase-initials'.
|
|
101 Optional second arg BUFFER specifies which buffer's case tables to use,
|
|
102 and defaults to the current buffer.
|
|
103 */
|
444
|
104 (string_or_char, buffer))
|
428
|
105 {
|
444
|
106 return casify_object (CASE_UP, string_or_char, buffer);
|
428
|
107 }
|
|
108
|
|
109 DEFUN ("downcase", Fdowncase, 1, 2, 0, /*
|
444
|
110 Convert STRING-OR-CHAR to lower case and return that.
|
|
111 STRING-OR-CHAR may be a character or string. The result has the same type.
|
|
112 STRING-OR-CHAR is not altered--the value is a copy.
|
428
|
113 Optional second arg BUFFER specifies which buffer's case tables to use,
|
|
114 and defaults to the current buffer.
|
|
115 */
|
444
|
116 (string_or_char, buffer))
|
428
|
117 {
|
444
|
118 return casify_object (CASE_DOWN, string_or_char, buffer);
|
428
|
119 }
|
|
120
|
|
121 DEFUN ("capitalize", Fcapitalize, 1, 2, 0, /*
|
444
|
122 Convert STRING-OR-CHAR to capitalized form and return that.
|
428
|
123 This means that each word's first character is upper case
|
|
124 and the rest is lower case.
|
444
|
125 STRING-OR-CHAR may be a character or string. The result has the same type.
|
|
126 STRING-OR-CHAR is not altered--the value is a copy.
|
428
|
127 Optional second arg BUFFER specifies which buffer's case tables to use,
|
|
128 and defaults to the current buffer.
|
|
129 */
|
444
|
130 (string_or_char, buffer))
|
428
|
131 {
|
444
|
132 return casify_object (CASE_CAPITALIZE, string_or_char, buffer);
|
428
|
133 }
|
|
134
|
|
135 /* Like Fcapitalize but change only the initial characters. */
|
|
136
|
|
137 DEFUN ("upcase-initials", Fupcase_initials, 1, 2, 0, /*
|
444
|
138 Convert the initial of each word in STRING-OR-CHAR to upper case.
|
428
|
139 Do not change the other letters of each word.
|
444
|
140 STRING-OR-CHAR may be a character or string. The result has the same type.
|
|
141 STRING-OR-CHAR is not altered--the value is a copy.
|
428
|
142 Optional second arg BUFFER specifies which buffer's case tables to use,
|
|
143 and defaults to the current buffer.
|
|
144 */
|
444
|
145 (string_or_char, buffer))
|
428
|
146 {
|
444
|
147 return casify_object (CASE_CAPITALIZE_UP, string_or_char, buffer);
|
428
|
148 }
|
|
149
|
|
150 /* flag is CASE_UP, CASE_DOWN or CASE_CAPITALIZE or CASE_CAPITALIZE_UP.
|
444
|
151 START and END specify range of buffer to operate on. */
|
428
|
152
|
|
153 static void
|
444
|
154 casify_region_internal (enum case_action flag, Lisp_Object start,
|
|
155 Lisp_Object end, struct buffer *buf)
|
428
|
156 {
|
|
157 /* This function can GC */
|
665
|
158 Charbpos pos, s, e;
|
440
|
159 Lisp_Char_Table *syntax_table = XCHAR_TABLE (buf->mirror_syntax_table);
|
428
|
160 int mccount;
|
|
161 int wordp = 0, wordp_prev;
|
|
162
|
444
|
163 if (EQ (start, end))
|
428
|
164 /* Not modifying because nothing marked */
|
|
165 return;
|
|
166
|
444
|
167 get_buffer_range_char (buf, start, end, &s, &e, 0);
|
|
168
|
|
169 mccount = begin_multiple_change (buf, s, e);
|
|
170 record_change (buf, s, e - s);
|
428
|
171
|
444
|
172 for (pos = s; pos < e; pos++)
|
428
|
173 {
|
444
|
174 Emchar oldc = BUF_FETCH_CHAR (buf, pos);
|
|
175 Emchar c = oldc;
|
428
|
176
|
|
177 switch (flag)
|
|
178 {
|
|
179 case CASE_UP:
|
|
180 c = UPCASE (buf, oldc);
|
|
181 break;
|
|
182 case CASE_DOWN:
|
|
183 c = DOWNCASE (buf, oldc);
|
|
184 break;
|
|
185 case CASE_CAPITALIZE:
|
|
186 case CASE_CAPITALIZE_UP:
|
|
187 /* !!#### need to revalidate the start and end pointers in case
|
|
188 the buffer was changed */
|
|
189 wordp_prev = wordp;
|
|
190 wordp = WORD_SYNTAX_P (syntax_table, c);
|
|
191 if (!wordp) continue;
|
|
192 if (wordp_prev)
|
|
193 {
|
|
194 if (flag == CASE_CAPITALIZE)
|
|
195 c = DOWNCASE (buf, c);
|
|
196 }
|
|
197 else
|
|
198 c = UPCASE (buf, c);
|
|
199 break;
|
|
200 }
|
|
201
|
|
202 if (oldc == c) continue;
|
444
|
203 buffer_replace_char (buf, pos, c, 1, (pos == s));
|
428
|
204 BUF_MODIFF (buf)++;
|
|
205 }
|
|
206
|
|
207 end_multiple_change (buf, mccount);
|
|
208 }
|
|
209
|
|
210 static Lisp_Object
|
444
|
211 casify_region (enum case_action flag, Lisp_Object start, Lisp_Object end,
|
428
|
212 Lisp_Object buffer)
|
|
213 {
|
444
|
214 casify_region_internal (flag, start, end, decode_buffer (buffer, 1));
|
428
|
215 return Qnil;
|
|
216 }
|
|
217
|
|
218 DEFUN ("upcase-region", Fupcase_region, 2, 3, "r", /*
|
|
219 Convert the region to upper case. In programs, wants two arguments.
|
|
220 These arguments specify the starting and ending character numbers of
|
|
221 the region to operate on. When used as a command, the text between
|
|
222 point and the mark is operated on.
|
|
223 See also `capitalize-region'.
|
|
224 Optional third arg BUFFER defaults to the current buffer.
|
|
225 */
|
444
|
226 (start, end, buffer))
|
428
|
227 {
|
|
228 /* This function can GC */
|
444
|
229 return casify_region (CASE_UP, start, end, buffer);
|
428
|
230 }
|
|
231
|
|
232 DEFUN ("downcase-region", Fdowncase_region, 2, 3, "r", /*
|
|
233 Convert the region to lower case. In programs, wants two arguments.
|
|
234 These arguments specify the starting and ending character numbers of
|
|
235 the region to operate on. When used as a command, the text between
|
|
236 point and the mark is operated on.
|
|
237 Optional third arg BUFFER defaults to the current buffer.
|
|
238 */
|
444
|
239 (start, end, buffer))
|
428
|
240 {
|
|
241 /* This function can GC */
|
444
|
242 return casify_region (CASE_DOWN, start, end, buffer);
|
428
|
243 }
|
|
244
|
|
245 DEFUN ("capitalize-region", Fcapitalize_region, 2, 3, "r", /*
|
|
246 Convert the region to capitalized form.
|
|
247 Capitalized form means each word's first character is upper case
|
|
248 and the rest of it is lower case.
|
|
249 In programs, give two arguments, the starting and ending
|
|
250 character positions to operate on.
|
|
251 Optional third arg BUFFER defaults to the current buffer.
|
|
252 */
|
444
|
253 (start, end, buffer))
|
428
|
254 {
|
|
255 /* This function can GC */
|
444
|
256 return casify_region (CASE_CAPITALIZE, start, end, buffer);
|
428
|
257 }
|
|
258
|
|
259 /* Like Fcapitalize_region but change only the initials. */
|
|
260
|
|
261 DEFUN ("upcase-initials-region", Fupcase_initials_region, 2, 3, "r", /*
|
|
262 Upcase the initial of each word in the region.
|
|
263 Subsequent letters of each word are not changed.
|
|
264 In programs, give two arguments, the starting and ending
|
|
265 character positions to operate on.
|
|
266 Optional third arg BUFFER defaults to the current buffer.
|
|
267 */
|
444
|
268 (start, end, buffer))
|
428
|
269 {
|
444
|
270 return casify_region (CASE_CAPITALIZE_UP, start, end, buffer);
|
428
|
271 }
|
|
272
|
|
273
|
|
274 static Lisp_Object
|
|
275 casify_word (enum case_action flag, Lisp_Object arg, Lisp_Object buffer)
|
|
276 {
|
665
|
277 Charbpos farend;
|
428
|
278 struct buffer *buf = decode_buffer (buffer, 1);
|
|
279
|
|
280 CHECK_INT (arg);
|
|
281
|
|
282 farend = scan_words (buf, BUF_PT (buf), XINT (arg));
|
|
283 if (!farend)
|
|
284 farend = XINT (arg) > 0 ? BUF_ZV (buf) : BUF_BEGV (buf);
|
|
285
|
|
286 casify_region_internal (flag, make_int (BUF_PT (buf)), make_int (farend), buf);
|
|
287 BUF_SET_PT (buf, max (BUF_PT (buf), farend));
|
|
288 return Qnil;
|
|
289 }
|
|
290
|
|
291 DEFUN ("upcase-word", Fupcase_word, 1, 2, "p", /*
|
444
|
292 Convert following word (or COUNT words) to upper case, moving over.
|
428
|
293 With negative argument, convert previous words but do not move.
|
|
294 See also `capitalize-word'.
|
|
295 Optional second arg BUFFER defaults to the current buffer.
|
|
296 */
|
444
|
297 (count, buffer))
|
428
|
298 {
|
|
299 /* This function can GC */
|
444
|
300 return casify_word (CASE_UP, count, buffer);
|
428
|
301 }
|
|
302
|
|
303 DEFUN ("downcase-word", Fdowncase_word, 1, 2, "p", /*
|
444
|
304 Convert following word (or COUNT words) to lower case, moving over.
|
428
|
305 With negative argument, convert previous words but do not move.
|
|
306 Optional second arg BUFFER defaults to the current buffer.
|
|
307 */
|
444
|
308 (count, buffer))
|
428
|
309 {
|
|
310 /* This function can GC */
|
444
|
311 return casify_word (CASE_DOWN, count, buffer);
|
428
|
312 }
|
|
313
|
|
314 DEFUN ("capitalize-word", Fcapitalize_word, 1, 2, "p", /*
|
444
|
315 Capitalize the following word (or COUNT words), moving over.
|
428
|
316 This gives the word(s) a first character in upper case
|
|
317 and the rest lower case.
|
|
318 With negative argument, capitalize previous words but do not move.
|
|
319 Optional second arg BUFFER defaults to the current buffer.
|
|
320 */
|
444
|
321 (count, buffer))
|
428
|
322 {
|
|
323 /* This function can GC */
|
444
|
324 return casify_word (CASE_CAPITALIZE, count, buffer);
|
428
|
325 }
|
|
326
|
|
327
|
|
328 void
|
|
329 syms_of_casefiddle (void)
|
|
330 {
|
|
331 DEFSUBR (Fupcase);
|
|
332 DEFSUBR (Fdowncase);
|
|
333 DEFSUBR (Fcapitalize);
|
|
334 DEFSUBR (Fupcase_initials);
|
|
335 DEFSUBR (Fupcase_region);
|
|
336 DEFSUBR (Fdowncase_region);
|
|
337 DEFSUBR (Fcapitalize_region);
|
|
338 DEFSUBR (Fupcase_initials_region);
|
|
339 DEFSUBR (Fupcase_word);
|
|
340 DEFSUBR (Fdowncase_word);
|
|
341 DEFSUBR (Fcapitalize_word);
|
|
342 }
|