summaryrefslogtreecommitdiff
path: root/src/casefiddle.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2011-04-13 22:04:02 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2011-04-13 22:04:02 -0700
commita7ca3326c4740ed3ed118b794d35d235de49f346 (patch)
tree5d38e0eac8e839c84a4ccb6e8a07c3c7858fff54 /src/casefiddle.c
parente87b6180b08c60a256dd8557945321ce2354a3a9 (diff)
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 7a220c8186..9f286d73a5 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -148,7 +148,7 @@ casify_object (enum case_action flag, Lisp_Object obj)
}
}
-DEFUE ("upcase", Fupcase, Supcase, 1, 1, 0,
+DEFUN ("upcase", Fupcase, Supcase, 1, 1, 0,
doc: /* Convert argument to upper case and return that.
The argument may be a character or string. The result has the same type.
The argument object is not altered--the value is a copy.
@@ -158,7 +158,7 @@ See also `capitalize', `downcase' and `upcase-initials'. */)
return casify_object (CASE_UP, obj);
}
-DEFUE ("downcase", Fdowncase, Sdowncase, 1, 1, 0,
+DEFUN ("downcase", Fdowncase, Sdowncase, 1, 1, 0,
doc: /* Convert argument to lower case and return that.
The argument may be a character or string. The result has the same type.
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. */)
/* Like Fcapitalize but change only the initials. */
-DEFUE ("upcase-initials", Fupcase_initials, Supcase_initials, 1, 1, 0,
+DEFUN ("upcase-initials", Fupcase_initials, Supcase_initials, 1, 1, 0,
doc: /* Convert the initial of each word in the argument to upper case.
Do not change the other letters of each word.
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)
}
}
-DEFUE ("upcase-region", Fupcase_region, Supcase_region, 2, 2, "r",
+DEFUN ("upcase-region", Fupcase_region, Supcase_region, 2, 2, "r",
doc: /* Convert the region to upper case. In programs, wants two arguments.
These arguments specify the starting and ending character numbers of
the region to operate on. When used as a command, the text between
@@ -338,7 +338,7 @@ character positions to operate on. */)
/* Like Fcapitalize_region but change only the initials. */
-DEFUE ("upcase-initials-region", Fupcase_initials_region,
+DEFUN ("upcase-initials-region", Fupcase_initials_region,
Supcase_initials_region, 2, 2, "r",
doc: /* Upcase the initial of each word in the region.
Subsequent letters of each word are not changed.