1 /* GNU Emacs case conversion functions.
2 Copyright (C) 1985, 1994 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 enum case_action
{CASE_UP
, CASE_DOWN
, CASE_CAPITALIZE
, CASE_CAPITALIZE_UP
};
31 casify_object (flag
, obj
)
32 enum case_action flag
;
35 register int i
, c
, len
;
36 register int inword
= flag
== CASE_DOWN
;
38 /* If the case table is flagged as modified, rescan it. */
39 if (NILP (XCHAR_TABLE (current_buffer
->downcase_table
)->extras
[1]))
40 Fset_case_table (current_buffer
->downcase_table
);
47 if (c
>= 0 && c
<= 0400)
50 XSETFASTINT (obj
, DOWNCASE (c
));
51 else if (!UPPERCASEP (c
))
52 XSETFASTINT (obj
, UPCASE1 (c
));
58 obj
= Fcopy_sequence (obj
);
59 len
= XSTRING (obj
)->size
;
60 for (i
= 0; i
< len
; i
++)
62 c
= XSTRING (obj
)->data
[i
];
63 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
65 else if (!UPPERCASEP (c
)
66 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
68 XSTRING (obj
)->data
[i
] = c
;
69 if ((int) flag
>= (int) CASE_CAPITALIZE
)
70 inword
= SYNTAX (c
) == Sword
;
74 obj
= wrong_type_argument (Qchar_or_string_p
, obj
);
78 DEFUN ("upcase", Fupcase
, Supcase
, 1, 1, 0,
79 "Convert argument to upper case and return that.\n\
80 The argument may be a character or string. The result has the same type.\n\
81 The argument object is not altered--the value is a copy.\n\
82 See also `capitalize', `downcase' and `upcase-initials'.")
86 return casify_object (CASE_UP
, obj
);
89 DEFUN ("downcase", Fdowncase
, Sdowncase
, 1, 1, 0,
90 "Convert argument to lower case and return that.\n\
91 The argument may be a character or string. The result has the same type.\n\
92 The argument object is not altered--the value is a copy.")
96 return casify_object (CASE_DOWN
, obj
);
99 DEFUN ("capitalize", Fcapitalize
, Scapitalize
, 1, 1, 0,
100 "Convert argument to capitalized form and return that.\n\
101 This means that each word's first character is upper case\n\
102 and the rest is lower case.\n\
103 The argument may be a character or string. The result has the same type.\n\
104 The argument object is not altered--the value is a copy.")
108 return casify_object (CASE_CAPITALIZE
, obj
);
111 /* Like Fcapitalize but change only the initials. */
113 DEFUN ("upcase-initials", Fupcase_initials
, Supcase_initials
, 1, 1, 0,
114 "Convert the initial of each word in the argument to upper case.\n\
115 Do not change the other letters of each word.\n\
116 The argument may be a character or string. The result has the same type.\n\
117 The argument object is not altered--the value is a copy.")
121 return casify_object (CASE_CAPITALIZE_UP
, obj
);
124 /* flag is CASE_UP, CASE_DOWN or CASE_CAPITALIZE or CASE_CAPITALIZE_UP.
125 b and e specify range of buffer to operate on. */
127 casify_region (flag
, b
, e
)
128 enum case_action flag
;
133 register int inword
= flag
== CASE_DOWN
;
137 /* Not modifying because nothing marked */
140 /* If the case table is flagged as modified, rescan it. */
141 if (NILP (XCHAR_TABLE (current_buffer
->downcase_table
)->extras
[1]))
142 Fset_case_table (current_buffer
->downcase_table
);
144 validate_region (&b
, &e
);
145 start
= XFASTINT (b
);
147 modify_region (current_buffer
, start
, end
);
148 record_change (start
, end
- start
);
150 for (i
= start
; i
< end
; i
++)
153 if (inword
&& flag
!= CASE_CAPITALIZE_UP
)
155 else if (!UPPERCASEP (c
)
156 && (!inword
|| flag
!= CASE_CAPITALIZE_UP
))
159 if ((int) flag
>= (int) CASE_CAPITALIZE
)
160 inword
= SYNTAX (c
) == Sword
;
163 signal_after_change (start
, end
- start
, end
- start
);
166 DEFUN ("upcase-region", Fupcase_region
, Supcase_region
, 2, 2, "r",
167 "Convert the region to upper case. In programs, wants two arguments.\n\
168 These arguments specify the starting and ending character numbers of\n\
169 the region to operate on. When used as a command, the text between\n\
170 point and the mark is operated on.\n\
171 See also `capitalize-region'.")
173 Lisp_Object beg
, end
;
175 casify_region (CASE_UP
, beg
, end
);
179 DEFUN ("downcase-region", Fdowncase_region
, Sdowncase_region
, 2, 2, "r",
180 "Convert the region to lower case. In programs, wants two arguments.\n\
181 These arguments specify the starting and ending character numbers of\n\
182 the region to operate on. When used as a command, the text between\n\
183 point and the mark is operated on.")
185 Lisp_Object beg
, end
;
187 casify_region (CASE_DOWN
, beg
, end
);
191 DEFUN ("capitalize-region", Fcapitalize_region
, Scapitalize_region
, 2, 2, "r",
192 "Convert the region to capitalized form.\n\
193 Capitalized form means each word's first character is upper case\n\
194 and the rest of it is lower case.\n\
195 In programs, give two arguments, the starting and ending\n\
196 character positions to operate on.")
198 Lisp_Object beg
, end
;
200 casify_region (CASE_CAPITALIZE
, beg
, end
);
204 /* Like Fcapitalize_region but change only the initials. */
206 DEFUN ("upcase-initials-region", Fupcase_initials_region
,
207 Supcase_initials_region
, 2, 2, "r",
208 "Upcase the initial of each word in the region.\n\
209 Subsequent letters of each word are not changed.\n\
210 In programs, give two arguments, the starting and ending\n\
211 character positions to operate on.")
213 Lisp_Object beg
, end
;
215 casify_region (CASE_CAPITALIZE_UP
, beg
, end
);
220 operate_on_word (arg
, newpoint
)
228 CHECK_NUMBER (arg
, 0);
230 farend
= scan_words (point
, iarg
);
232 farend
= iarg
> 0 ? ZV
: BEGV
;
234 *newpoint
= point
> farend
? point
: farend
;
235 XSETFASTINT (val
, farend
);
240 DEFUN ("upcase-word", Fupcase_word
, Supcase_word
, 1, 1, "p",
241 "Convert following word (or ARG words) to upper case, moving over.\n\
242 With negative argument, convert previous words but do not move.\n\
243 See also `capitalize-word'.")
247 Lisp_Object beg
, end
;
249 XSETFASTINT (beg
, point
);
250 end
= operate_on_word (arg
, &newpoint
);
251 casify_region (CASE_UP
, beg
, end
);
256 DEFUN ("downcase-word", Fdowncase_word
, Sdowncase_word
, 1, 1, "p",
257 "Convert following word (or ARG words) to lower case, moving over.\n\
258 With negative argument, convert previous words but do not move.")
262 Lisp_Object beg
, end
;
264 XSETFASTINT (beg
, point
);
265 end
= operate_on_word (arg
, &newpoint
);
266 casify_region (CASE_DOWN
, beg
, end
);
271 DEFUN ("capitalize-word", Fcapitalize_word
, Scapitalize_word
, 1, 1, "p",
272 "Capitalize the following word (or ARG words), moving over.\n\
273 This gives the word(s) a first character in upper case\n\
274 and the rest lower case.\n\
275 With negative argument, capitalize previous words but do not move.")
279 Lisp_Object beg
, end
;
281 XSETFASTINT (beg
, point
);
282 end
= operate_on_word (arg
, &newpoint
);
283 casify_region (CASE_CAPITALIZE
, beg
, end
);
288 syms_of_casefiddle ()
291 defsubr (&Sdowncase
);
292 defsubr (&Scapitalize
);
293 defsubr (&Supcase_initials
);
294 defsubr (&Supcase_region
);
295 defsubr (&Sdowncase_region
);
296 defsubr (&Scapitalize_region
);
297 defsubr (&Supcase_initials_region
);
298 defsubr (&Supcase_word
);
299 defsubr (&Sdowncase_word
);
300 defsubr (&Scapitalize_word
);
303 keys_of_casefiddle ()
305 initial_define_key (control_x_map
, Ctl('U'), "upcase-region");
306 Fput (intern ("upcase-region"), Qdisabled
, Qt
);
307 initial_define_key (control_x_map
, Ctl('L'), "downcase-region");
308 Fput (intern ("downcase-region"), Qdisabled
, Qt
);
310 initial_define_key (meta_map
, 'u', "upcase-word");
311 initial_define_key (meta_map
, 'l', "downcase-word");
312 initial_define_key (meta_map
, 'c', "capitalize-word");