1 /* GNU Emacs case conversion functions.
2 Copyright (C) 1985, 1994, 1997 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; 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. */
28 #include "composite.h"
30 enum case_action
{CASE_UP
, CASE_DOWN
, CASE_CAPITALIZE
, CASE_CAPITALIZE_UP
};
32 Lisp_Object Qidentity
;
35 casify_object (flag
, obj
)
36 enum case_action flag
;
39 register int i
, c
, len
;
40 register int inword
= flag
== CASE_DOWN
;
42 /* If the case table is flagged as modified, rescan it. */
43 if (NILP (XCHAR_TABLE (current_buffer
->downcase_table
)->extras
[1]))
44 Fset_case_table (current_buffer
->downcase_table
);
50 int flagbits
= (CHAR_ALT
| CHAR_SUPER
| CHAR_HYPER
51 | CHAR_SHIFT
| CHAR_CTL
| CHAR_META
);
52 int flags
= XINT (obj
) & flagbits
;
54 c
= DOWNCASE (XFASTINT (obj
) & ~flagbits
);
56 XSETFASTINT (obj
, c
| flags
);
57 else if (c
== (XFASTINT (obj
) & ~flagbits
))
59 c
= UPCASE1 ((XFASTINT (obj
) & ~flagbits
));
60 XSETFASTINT (obj
, c
| flags
);
67 int multibyte
= STRING_MULTIBYTE (obj
);
69 obj
= Fcopy_sequence (obj
);
70 len
= STRING_BYTES (XSTRING (obj
));
72 /* Scan all single-byte characters from start of string. */
75 c
= XSTRING (obj
)->data
[i
];
77 if (multibyte
&& c
>= 0x80)
78 /* A multibyte character can't be handled in this
81 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
83 else if (!UPPERCASEP (c
)
84 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
86 /* If this char won't fit in a single-byte string.
87 fall out to the multibyte case. */
88 if (multibyte
? ! ASCII_BYTE_P (c
)
89 : ! SINGLE_BYTE_CHAR_P (c
))
92 XSTRING (obj
)->data
[i
] = c
;
93 if ((int) flag
>= (int) CASE_CAPITALIZE
)
94 inword
= SYNTAX (c
) == Sword
;
98 /* If we didn't do the whole string as single-byte,
99 scan the rest in a more complex way. */
102 /* The work is not yet finished because of a multibyte
103 character just encountered. */
104 int fromlen
, tolen
, j_byte
= i
;
106 = (char *) alloca ((len
- i
) * MAX_MULTIBYTE_LENGTH
+ i
);
108 /* Copy data already handled. */
109 bcopy (XSTRING (obj
)->data
, buf
, i
);
111 /* From now on, I counts bytes. */
114 c
= STRING_CHAR_AND_LENGTH (XSTRING (obj
)->data
+ i
,
116 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
118 else if (!UPPERCASEP (c
)
119 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
122 j_byte
+= CHAR_STRING (c
, buf
+ j_byte
);
123 if ((int) flag
>= (int) CASE_CAPITALIZE
)
124 inword
= SYNTAX (c
) == Sword
;
126 obj
= make_multibyte_string (buf
, XSTRING (obj
)->size
,
131 obj
= wrong_type_argument (Qchar_or_string_p
, obj
);
135 DEFUN ("upcase", Fupcase
, Supcase
, 1, 1, 0,
136 "Convert argument to upper case and return that.\n\
137 The argument may be a character or string. The result has the same type.\n\
138 The argument object is not altered--the value is a copy.\n\
139 See also `capitalize', `downcase' and `upcase-initials'.")
143 return casify_object (CASE_UP
, obj
);
146 DEFUN ("downcase", Fdowncase
, Sdowncase
, 1, 1, 0,
147 "Convert argument to lower case and return that.\n\
148 The argument may be a character or string. The result has the same type.\n\
149 The argument object is not altered--the value is a copy.")
153 return casify_object (CASE_DOWN
, obj
);
156 DEFUN ("capitalize", Fcapitalize
, Scapitalize
, 1, 1, 0,
157 "Convert argument to capitalized form and return that.\n\
158 This means that each word's first character is upper case\n\
159 and the rest is lower case.\n\
160 The argument may be a character or string. The result has the same type.\n\
161 The argument object is not altered--the value is a copy.")
165 return casify_object (CASE_CAPITALIZE
, obj
);
168 /* Like Fcapitalize but change only the initials. */
170 DEFUN ("upcase-initials", Fupcase_initials
, Supcase_initials
, 1, 1, 0,
171 "Convert the initial of each word in the argument to upper case.\n\
172 Do not change the other letters of each word.\n\
173 The argument may be a character or string. The result has the same type.\n\
174 The argument object is not altered--the value is a copy.")
178 return casify_object (CASE_CAPITALIZE_UP
, obj
);
181 /* flag is CASE_UP, CASE_DOWN or CASE_CAPITALIZE or CASE_CAPITALIZE_UP.
182 b and e specify range of buffer to operate on. */
185 casify_region (flag
, b
, e
)
186 enum case_action flag
;
191 register int inword
= flag
== CASE_DOWN
;
192 register int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
194 int start_byte
, end_byte
;
198 /* Not modifying because nothing marked */
201 /* If the case table is flagged as modified, rescan it. */
202 if (NILP (XCHAR_TABLE (current_buffer
->downcase_table
)->extras
[1]))
203 Fset_case_table (current_buffer
->downcase_table
);
205 validate_region (&b
, &e
);
206 start
= XFASTINT (b
);
208 modify_region (current_buffer
, start
, end
);
209 record_change (start
, end
- start
);
210 start_byte
= CHAR_TO_BYTE (start
);
211 end_byte
= CHAR_TO_BYTE (end
);
213 for (i
= start_byte
; i
< end_byte
; i
++, start
++)
216 c
= c2
= FETCH_BYTE (i
);
217 if (multibyte
&& c
>= 0x80)
218 /* A multibyte character can't be handled in this simple loop. */
220 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
222 else if (!UPPERCASEP (c
)
223 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
228 if ((int) flag
>= (int) CASE_CAPITALIZE
)
229 inword
= SYNTAX (c
) == Sword
;
233 /* The work is not yet finished because of a multibyte character
236 int opoint_byte
= PT_BYTE
;
241 if ((c
= FETCH_BYTE (i
)) >= 0x80)
242 c
= FETCH_MULTIBYTE_CHAR (i
);
244 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
246 else if (!UPPERCASEP (c
)
247 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
251 int fromlen
, tolen
, j
;
252 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
255 /* Handle the most likely case */
256 if (c
< 0400 && c2
< 0400)
258 else if (fromlen
= CHAR_STRING (c
, str
),
259 tolen
= CHAR_STRING (c2
, str
),
262 for (j
= 0; j
< tolen
; ++j
)
263 FETCH_BYTE (i
+ j
) = str
[j
];
267 error ("Can't casify letters that change length");
268 #if 0 /* This is approximately what we'd like to be able to do here */
270 del_range_1 (i
+ tolen
, i
+ fromlen
, 0, 0);
271 else if (tolen
> fromlen
)
273 TEMP_SET_PT (i
+ fromlen
);
274 insert_1 (str
+ fromlen
, tolen
- fromlen
, 1, 0, 0);
279 if ((int) flag
>= (int) CASE_CAPITALIZE
)
280 inword
= SYNTAX (c2
) == Sword
;
283 TEMP_SET_PT_BOTH (opoint
, opoint_byte
);
286 start
= XFASTINT (b
);
289 signal_after_change (start
, end
- start
, end
- start
);
290 update_compositions (start
, end
, CHECK_ALL
);
294 DEFUN ("upcase-region", Fupcase_region
, Supcase_region
, 2, 2, "r",
295 "Convert the region to upper case. In programs, wants two arguments.\n\
296 These arguments specify the starting and ending character numbers of\n\
297 the region to operate on. When used as a command, the text between\n\
298 point and the mark is operated on.\n\
299 See also `capitalize-region'.")
301 Lisp_Object beg
, end
;
303 casify_region (CASE_UP
, beg
, end
);
307 DEFUN ("downcase-region", Fdowncase_region
, Sdowncase_region
, 2, 2, "r",
308 "Convert the region to lower case. In programs, wants two arguments.\n\
309 These arguments specify the starting and ending character numbers of\n\
310 the region to operate on. When used as a command, the text between\n\
311 point and the mark is operated on.")
313 Lisp_Object beg
, end
;
315 casify_region (CASE_DOWN
, beg
, end
);
319 DEFUN ("capitalize-region", Fcapitalize_region
, Scapitalize_region
, 2, 2, "r",
320 "Convert the region to capitalized form.\n\
321 Capitalized form means each word's first character is upper case\n\
322 and the rest of it is lower case.\n\
323 In programs, give two arguments, the starting and ending\n\
324 character positions to operate on.")
326 Lisp_Object beg
, end
;
328 casify_region (CASE_CAPITALIZE
, beg
, end
);
332 /* Like Fcapitalize_region but change only the initials. */
334 DEFUN ("upcase-initials-region", Fupcase_initials_region
,
335 Supcase_initials_region
, 2, 2, "r",
336 "Upcase the initial of each word in the region.\n\
337 Subsequent letters of each word are not changed.\n\
338 In programs, give two arguments, the starting and ending\n\
339 character positions to operate on.")
341 Lisp_Object beg
, end
;
343 casify_region (CASE_CAPITALIZE_UP
, beg
, end
);
348 operate_on_word (arg
, newpoint
)
356 CHECK_NUMBER (arg
, 0);
358 farend
= scan_words (PT
, iarg
);
360 farend
= iarg
> 0 ? ZV
: BEGV
;
362 *newpoint
= PT
> farend
? PT
: farend
;
363 XSETFASTINT (val
, farend
);
368 DEFUN ("upcase-word", Fupcase_word
, Supcase_word
, 1, 1, "p",
369 "Convert following word (or ARG words) to upper case, moving over.\n\
370 With negative argument, convert previous words but do not move.\n\
371 See also `capitalize-word'.")
375 Lisp_Object beg
, end
;
377 XSETFASTINT (beg
, PT
);
378 end
= operate_on_word (arg
, &newpoint
);
379 casify_region (CASE_UP
, beg
, end
);
384 DEFUN ("downcase-word", Fdowncase_word
, Sdowncase_word
, 1, 1, "p",
385 "Convert following word (or ARG words) to lower case, moving over.\n\
386 With negative argument, convert previous words but do not move.")
390 Lisp_Object beg
, end
;
392 XSETFASTINT (beg
, PT
);
393 end
= operate_on_word (arg
, &newpoint
);
394 casify_region (CASE_DOWN
, beg
, end
);
399 DEFUN ("capitalize-word", Fcapitalize_word
, Scapitalize_word
, 1, 1, "p",
400 "Capitalize the following word (or ARG words), moving over.\n\
401 This gives the word(s) a first character in upper case\n\
402 and the rest lower case.\n\
403 With negative argument, capitalize previous words but do not move.")
407 Lisp_Object beg
, end
;
409 XSETFASTINT (beg
, PT
);
410 end
= operate_on_word (arg
, &newpoint
);
411 casify_region (CASE_CAPITALIZE
, beg
, end
);
417 syms_of_casefiddle ()
419 Qidentity
= intern ("identity");
420 staticpro (&Qidentity
);
422 defsubr (&Sdowncase
);
423 defsubr (&Scapitalize
);
424 defsubr (&Supcase_initials
);
425 defsubr (&Supcase_region
);
426 defsubr (&Sdowncase_region
);
427 defsubr (&Scapitalize_region
);
428 defsubr (&Supcase_initials_region
);
429 defsubr (&Supcase_word
);
430 defsubr (&Sdowncase_word
);
431 defsubr (&Scapitalize_word
);
435 keys_of_casefiddle ()
437 initial_define_key (control_x_map
, Ctl('U'), "upcase-region");
438 Fput (intern ("upcase-region"), Qdisabled
, Qt
);
439 initial_define_key (control_x_map
, Ctl('L'), "downcase-region");
440 Fput (intern ("downcase-region"), Qdisabled
, Qt
);
442 initial_define_key (meta_map
, 'u', "upcase-word");
443 initial_define_key (meta_map
, 'l', "downcase-word");
444 initial_define_key (meta_map
, 'c', "capitalize-word");