diff options
| author | Paul Eggert | 2011-04-13 22:04:02 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-04-13 22:04:02 -0700 |
| commit | a7ca3326c4740ed3ed118b794d35d235de49f346 (patch) | |
| tree | 5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/casefiddle.c | |
| parent | e87b6180b08c60a256dd8557945321ce2354a3a9 (diff) | |
| download | emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.tar.gz emacs-a7ca3326c4740ed3ed118b794d35d235de49f346.zip | |
Undo the DEFUN->DEFUE change.
Diffstat (limited to 'src/casefiddle.c')
| -rw-r--r-- | src/casefiddle.c | 10 |
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 | ||
| 151 | DEFUE ("upcase", Fupcase, Supcase, 1, 1, 0, | 151 | DEFUN ("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. |
| 153 | The argument may be a character or string. The result has the same type. | 153 | The argument may be a character or string. The result has the same type. |
| 154 | The argument object is not altered--the value is a copy. | 154 | The 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 | ||
| 161 | DEFUE ("downcase", Fdowncase, Sdowncase, 1, 1, 0, | 161 | DEFUN ("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. |
| 163 | The argument may be a character or string. The result has the same type. | 163 | The argument may be a character or string. The result has the same type. |
| 164 | The argument object is not altered--the value is a copy. */) | 164 | The 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 | ||
| 183 | DEFUE ("upcase-initials", Fupcase_initials, Supcase_initials, 1, 1, 0, | 183 | DEFUN ("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. |
| 185 | Do not change the other letters of each word. | 185 | Do not change the other letters of each word. |
| 186 | The argument may be a character or string. The result has the same type. | 186 | The 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 | ||
| 304 | DEFUE ("upcase-region", Fupcase_region, Supcase_region, 2, 2, "r", | 304 | DEFUN ("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. |
| 306 | These arguments specify the starting and ending character numbers of | 306 | These arguments specify the starting and ending character numbers of |
| 307 | the region to operate on. When used as a command, the text between | 307 | the 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 | ||
| 341 | DEFUE ("upcase-initials-region", Fupcase_initials_region, | 341 | DEFUN ("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. |
| 344 | Subsequent letters of each word are not changed. | 344 | Subsequent letters of each word are not changed. |