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. */
25 #include "character.h"
28 #include "composite.h"
31 enum case_action
{CASE_UP
, CASE_DOWN
, CASE_CAPITALIZE
, CASE_CAPITALIZE_UP
};
33 Lisp_Object Qidentity
;
36 casify_object (flag
, obj
)
37 enum case_action flag
;
40 register int i
, c
, len
;
41 register int inword
= flag
== CASE_DOWN
;
43 /* If the case table is flagged as modified, rescan it. */
44 if (NILP (XCHAR_TABLE (current_buffer
->downcase_table
)->extras
[1]))
45 Fset_case_table (current_buffer
->downcase_table
);
51 int flagbits
= (CHAR_ALT
| CHAR_SUPER
| CHAR_HYPER
52 | CHAR_SHIFT
| CHAR_CTL
| CHAR_META
);
53 int flags
= XINT (obj
) & flagbits
;
55 c
= DOWNCASE (XFASTINT (obj
) & ~flagbits
);
57 XSETFASTINT (obj
, c
| flags
);
58 else if (c
== (XFASTINT (obj
) & ~flagbits
))
60 c
= UPCASE1 ((XFASTINT (obj
) & ~flagbits
));
61 XSETFASTINT (obj
, c
| flags
);
68 int multibyte
= STRING_MULTIBYTE (obj
);
70 obj
= Fcopy_sequence (obj
);
71 len
= STRING_BYTES (XSTRING (obj
));
73 /* Scan all single-byte characters from start of string. */
76 c
= XSTRING (obj
)->data
[i
];
78 if (multibyte
&& c
>= 0x80)
79 /* A multibyte character can't be handled in this
82 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
84 else if (!UPPERCASEP (c
)
85 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
87 /* If this char won't fit in a single-byte string.
88 fall out to the multibyte case. */
89 if (multibyte
? ! ASCII_BYTE_P (c
)
90 : ! SINGLE_BYTE_CHAR_P (c
))
93 XSTRING (obj
)->data
[i
] = c
;
94 if ((int) flag
>= (int) CASE_CAPITALIZE
)
95 inword
= SYNTAX (c
) == Sword
;
99 /* If we didn't do the whole string as single-byte,
100 scan the rest in a more complex way. */
103 /* The work is not yet finished because of a multibyte
104 character just encountered. */
105 int fromlen
, j_byte
= i
;
107 = (char *) alloca ((len
- i
) * MAX_MULTIBYTE_LENGTH
+ i
);
109 /* Copy data already handled. */
110 bcopy (XSTRING (obj
)->data
, buf
, i
);
112 /* From now on, I counts bytes. */
115 c
= STRING_CHAR_AND_LENGTH (XSTRING (obj
)->data
+ i
,
117 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
119 else if (!UPPERCASEP (c
)
120 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
123 j_byte
+= CHAR_STRING (c
, buf
+ j_byte
);
124 if ((int) flag
>= (int) CASE_CAPITALIZE
)
125 inword
= SYNTAX (c
) == Sword
;
127 obj
= make_multibyte_string (buf
, XSTRING (obj
)->size
,
132 obj
= wrong_type_argument (Qchar_or_string_p
, obj
);
136 DEFUN ("upcase", Fupcase
, Supcase
, 1, 1, 0,
137 doc
: /* Convert argument to upper case and return that.
138 The argument may be a character or string. The result has the same type.
139 The argument object is not altered--the value is a copy.
140 See also `capitalize', `downcase' and `upcase-initials'. */)
144 return casify_object (CASE_UP
, obj
);
147 DEFUN ("downcase", Fdowncase
, Sdowncase
, 1, 1, 0,
148 doc
: /* Convert argument to lower case and return that.
149 The argument may be a character or string. The result has the same type.
150 The argument object is not altered--the value is a copy. */)
154 return casify_object (CASE_DOWN
, obj
);
157 DEFUN ("capitalize", Fcapitalize
, Scapitalize
, 1, 1, 0,
158 doc
: /* Convert argument to capitalized form and return that.
159 This means that each word's first character is upper case
160 and the rest is lower case.
161 The argument may be a character or string. The result has the same type.
162 The argument object is not altered--the value is a copy. */)
166 return casify_object (CASE_CAPITALIZE
, obj
);
169 /* Like Fcapitalize but change only the initials. */
171 DEFUN ("upcase-initials", Fupcase_initials
, Supcase_initials
, 1, 1, 0,
172 doc
: /* Convert the initial of each word in the argument to upper case.
173 Do not change the other letters of each word.
174 The argument may be a character or string. The result has the same type.
175 The argument object is not altered--the value is a copy. */)
179 return casify_object (CASE_CAPITALIZE_UP
, obj
);
182 /* flag is CASE_UP, CASE_DOWN or CASE_CAPITALIZE or CASE_CAPITALIZE_UP.
183 b and e specify range of buffer to operate on. */
186 casify_region (flag
, b
, e
)
187 enum case_action flag
;
192 register int inword
= flag
== CASE_DOWN
;
193 register int multibyte
= !NILP (current_buffer
->enable_multibyte_characters
);
195 int start_byte
, end_byte
;
199 /* Not modifying because nothing marked */
202 /* If the case table is flagged as modified, rescan it. */
203 if (NILP (XCHAR_TABLE (current_buffer
->downcase_table
)->extras
[1]))
204 Fset_case_table (current_buffer
->downcase_table
);
206 validate_region (&b
, &e
);
207 start
= XFASTINT (b
);
209 modify_region (current_buffer
, start
, end
);
210 record_change (start
, end
- start
);
211 start_byte
= CHAR_TO_BYTE (start
);
212 end_byte
= CHAR_TO_BYTE (end
);
214 for (i
= start_byte
; i
< end_byte
; i
++, start
++)
217 c
= c2
= FETCH_BYTE (i
);
218 if (multibyte
&& c
>= 0x80)
219 /* A multibyte character can't be handled in this simple loop. */
221 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
223 else if (!UPPERCASEP (c
)
224 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
229 if ((int) flag
>= (int) CASE_CAPITALIZE
)
230 inword
= SYNTAX (c
) == Sword
;
234 /* The work is not yet finished because of a multibyte character
237 int opoint_byte
= PT_BYTE
;
242 if ((c
= FETCH_BYTE (i
)) >= 0x80)
243 c
= FETCH_MULTIBYTE_CHAR (i
);
245 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
247 else if (!UPPERCASEP (c
)
248 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
252 int fromlen
, tolen
, j
;
253 unsigned char str
[MAX_MULTIBYTE_LENGTH
];
256 /* Handle the most likely case */
257 if (multibyte
? (c
< 0200 && c2
< 0200)
258 : (c
< 0400 && c2
< 0400))
260 else if (fromlen
= CHAR_STRING (c
, str
),
261 tolen
= CHAR_STRING (c2
, str
),
264 for (j
= 0; j
< tolen
; ++j
)
265 FETCH_BYTE (i
+ j
) = str
[j
];
269 error ("Can't casify letters that change length");
270 #if 0 /* This is approximately what we'd like to be able to do here */
272 del_range_1 (i
+ tolen
, i
+ fromlen
, 0, 0);
273 else if (tolen
> fromlen
)
275 TEMP_SET_PT (i
+ fromlen
);
276 insert_1 (str
+ fromlen
, tolen
- fromlen
, 1, 0, 0);
281 if ((int) flag
>= (int) CASE_CAPITALIZE
)
282 inword
= SYNTAX (c2
) == Sword
;
285 TEMP_SET_PT_BOTH (opoint
, opoint_byte
);
288 start
= XFASTINT (b
);
291 signal_after_change (start
, end
- start
, end
- start
);
292 update_compositions (start
, end
, CHECK_ALL
);
296 DEFUN ("upcase-region", Fupcase_region
, Supcase_region
, 2, 2, "r",
297 doc
: /* Convert the region to upper case. In programs, wants two arguments.
298 These arguments specify the starting and ending character numbers of
299 the region to operate on. When used as a command, the text between
300 point and the mark is operated on.
301 See also `capitalize-region'. */)
303 Lisp_Object beg
, end
;
305 casify_region (CASE_UP
, beg
, end
);
309 DEFUN ("downcase-region", Fdowncase_region
, Sdowncase_region
, 2, 2, "r",
310 doc
: /* Convert the region to lower case. In programs, wants two arguments.
311 These arguments specify the starting and ending character numbers of
312 the region to operate on. When used as a command, the text between
313 point and the mark is operated on. */)
315 Lisp_Object beg
, end
;
317 casify_region (CASE_DOWN
, beg
, end
);
321 DEFUN ("capitalize-region", Fcapitalize_region
, Scapitalize_region
, 2, 2, "r",
322 doc
: /* Convert the region to capitalized form.
323 Capitalized form means each word's first character is upper case
324 and the rest of it is lower case.
325 In programs, give two arguments, the starting and ending
326 character positions to operate on. */)
328 Lisp_Object beg
, end
;
330 casify_region (CASE_CAPITALIZE
, beg
, end
);
334 /* Like Fcapitalize_region but change only the initials. */
336 DEFUN ("upcase-initials-region", Fupcase_initials_region
,
337 Supcase_initials_region
, 2, 2, "r",
338 doc
: /* Upcase the initial of each word in the region.
339 Subsequent letters of each word are not changed.
340 In programs, give two arguments, the starting and ending
341 character positions to operate on. */)
343 Lisp_Object beg
, end
;
345 casify_region (CASE_CAPITALIZE_UP
, beg
, end
);
350 operate_on_word (arg
, newpoint
)
360 farend
= scan_words (PT
, iarg
);
362 farend
= iarg
> 0 ? ZV
: BEGV
;
364 *newpoint
= PT
> farend
? PT
: farend
;
365 XSETFASTINT (val
, farend
);
370 DEFUN ("upcase-word", Fupcase_word
, Supcase_word
, 1, 1, "p",
371 doc
: /* Convert following word (or ARG words) to upper case, moving over.
372 With negative argument, convert previous words but do not move.
373 See also `capitalize-word'. */)
377 Lisp_Object beg
, end
;
379 XSETFASTINT (beg
, PT
);
380 end
= operate_on_word (arg
, &newpoint
);
381 casify_region (CASE_UP
, beg
, end
);
386 DEFUN ("downcase-word", Fdowncase_word
, Sdowncase_word
, 1, 1, "p",
387 doc
: /* Convert following word (or ARG words) to lower case, moving over.
388 With negative argument, convert previous words but do not move. */)
392 Lisp_Object beg
, end
;
394 XSETFASTINT (beg
, PT
);
395 end
= operate_on_word (arg
, &newpoint
);
396 casify_region (CASE_DOWN
, beg
, end
);
401 DEFUN ("capitalize-word", Fcapitalize_word
, Scapitalize_word
, 1, 1, "p",
402 doc
: /* Capitalize the following word (or ARG words), moving over.
403 This gives the word(s) a first character in upper case
404 and the rest lower case.
405 With negative argument, capitalize previous words but do not move. */)
409 Lisp_Object beg
, end
;
411 XSETFASTINT (beg
, PT
);
412 end
= operate_on_word (arg
, &newpoint
);
413 casify_region (CASE_CAPITALIZE
, beg
, end
);
419 syms_of_casefiddle ()
421 Qidentity
= intern ("identity");
422 staticpro (&Qidentity
);
424 defsubr (&Sdowncase
);
425 defsubr (&Scapitalize
);
426 defsubr (&Supcase_initials
);
427 defsubr (&Supcase_region
);
428 defsubr (&Sdowncase_region
);
429 defsubr (&Scapitalize_region
);
430 defsubr (&Supcase_initials_region
);
431 defsubr (&Supcase_word
);
432 defsubr (&Sdowncase_word
);
433 defsubr (&Scapitalize_word
);
437 keys_of_casefiddle ()
439 initial_define_key (control_x_map
, Ctl('U'), "upcase-region");
440 Fput (intern ("upcase-region"), Qdisabled
, Qt
);
441 initial_define_key (control_x_map
, Ctl('L'), "downcase-region");
442 Fput (intern ("downcase-region"), Qdisabled
, Qt
);
444 initial_define_key (meta_map
, 'u', "upcase-word");
445 initial_define_key (meta_map
, 'l', "downcase-word");
446 initial_define_key (meta_map
, 'c', "capitalize-word");