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