aboutsummaryrefslogtreecommitdiffstats
path: root/src/casefiddle.c
diff options
context:
space:
mode:
authorPaul Eggert2011-04-13 22:04:02 -0700
committerPaul Eggert2011-04-13 22:04:02 -0700
commita7ca3326c4740ed3ed118b794d35d235de49f346 (patch)
tree5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/casefiddle.c
parente87b6180b08c60a256dd8557945321ce2354a3a9 (diff)
downloademacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz
emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/casefiddle.c')
-rw-r--r--src/casefiddle.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/casefiddle.c b/src/casefiddle.c
index 7a220c81865..9f286d73a5e 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -148,7 +148,7 @@ casify_object (enum case_action flag, Lisp_Object obj)
148 } 148 }
149} 149}
150 150
151DEFUE ("upcase", Fupcase, Supcase, 1, 1, 0, 151DEFUN ("upcase", Fupcase, Supcase, 1, 1, 0,
152 doc: /* Convert argument to upper case and return that. 152 doc: /* Convert argument to upper case and return that.
153The argument may be a character or string. The result has the same type. 153The argument may be a character or string. The result has the same type.
154The argument object is not altered--the value is a copy. 154The argument object is not altered--the value is a copy.
@@ -158,7 +158,7 @@ See also `capitalize', `downcase' and `upcase-initials'. */)
158 return casify_object (CASE_UP, obj); 158 return casify_object (CASE_UP, obj);
159} 159}
160 160
161DEFUE ("downcase", Fdowncase, Sdowncase, 1, 1, 0, 161DEFUN ("downcase", Fdowncase, Sdowncase, 1, 1, 0,
162 doc: /* Convert argument to lower case and return that. 162 doc: /* Convert argument to lower case and return that.
163The argument may be a character or string. The result has the same type. 163The argument may be a character or string. The result has the same type.
164The argument object is not altered--the value is a copy. */) 164The argument object is not altered--the value is a copy. */)
@@ -180,7 +180,7 @@ The argument object is not altered--the value is a copy. */)
180 180
181/* Like Fcapitalize but change only the initials. */ 181/* Like Fcapitalize but change only the initials. */
182 182
183DEFUE ("upcase-initials", Fupcase_initials, Supcase_initials, 1, 1, 0, 183DEFUN ("upcase-initials", Fupcase_initials, Supcase_initials, 1, 1, 0,
184 doc: /* Convert the initial of each word in the argument to upper case. 184 doc: /* Convert the initial of each word in the argument to upper case.
185Do not change the other letters of each word. 185Do not change the other letters of each word.
186The argument may be a character or string. The result has the same type. 186The argument may be a character or string. The result has the same type.
@@ -301,7 +301,7 @@ casify_region (enum case_action flag, Lisp_Object b, Lisp_Object e)
301 } 301 }
302} 302}
303 303
304DEFUE ("upcase-region", Fupcase_region, Supcase_region, 2, 2, "r", 304DEFUN ("upcase-region", Fupcase_region, Supcase_region, 2, 2, "r",
305 doc: /* Convert the region to upper case. In programs, wants two arguments. 305 doc: /* Convert the region to upper case. In programs, wants two arguments.
306These arguments specify the starting and ending character numbers of 306These arguments specify the starting and ending character numbers of
307the region to operate on. When used as a command, the text between 307the region to operate on. When used as a command, the text between
@@ -338,7 +338,7 @@ character positions to operate on. */)
338 338
339/* Like Fcapitalize_region but change only the initials. */ 339/* Like Fcapitalize_region but change only the initials. */
340 340
341DEFUE ("upcase-initials-region", Fupcase_initials_region, 341DEFUN ("upcase-initials-region", Fupcase_initials_region,
342 Supcase_initials_region, 2, 2, "r", 342 Supcase_initials_region, 2, 2, "r",
343 doc: /* Upcase the initial of each word in the region. 343 doc: /* Upcase the initial of each word in the region.
344Subsequent letters of each word are not changed. 344Subsequent letters of each word are not changed.