summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Naggum <erik@naggum.no>1996-01-09 00:30:45 +0000
committerErik Naggum <erik@naggum.no>1996-01-09 00:30:45 +0000
commit725e25a79dc26c7d994ef9a28f7ef62f765855d1 (patch)
tree414d371d914106dd6631f99c3578d39d20ea9285
parent3e98c5dbbda1c52aefc08ebea351ef9b41ad041b (diff)
downloademacs-725e25a79dc26c7d994ef9a28f7ef62f765855d1.tar.gz
(Fupcase_region, Fdowncase_region, Fcapitalize_region,
Fupcase_initials_region): Harmonize arguments with documentation.
-rw-r--r--src/casefiddle.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/casefiddle.c b/src/casefiddle.c
index a208809ae2a..d6d72877a66 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -160,10 +160,10 @@ These arguments specify the starting and ending character numbers of\n\
the region to operate on. When used as a command, the text between\n\
point and the mark is operated on.\n\
See also `capitalize-region'.")
- (b, e)
- Lisp_Object b, e;
+ (beg, end)
+ Lisp_Object beg, end;
{
- casify_region (CASE_UP, b, e);
+ casify_region (CASE_UP, beg, end);
return Qnil;
}
@@ -172,10 +172,10 @@ DEFUN ("downcase-region", Fdowncase_region, Sdowncase_region, 2, 2, "r",
These arguments specify the starting and ending character numbers of\n\
the region to operate on. When used as a command, the text between\n\
point and the mark is operated on.")
- (b, e)
- Lisp_Object b, e;
+ (beg, end)
+ Lisp_Object beg, end;
{
- casify_region (CASE_DOWN, b, e);
+ casify_region (CASE_DOWN, beg, end);
return Qnil;
}
@@ -185,10 +185,10 @@ Capitalized form means each word's first character is upper case\n\
and the rest of it is lower case.\n\
In programs, give two arguments, the starting and ending\n\
character positions to operate on.")
- (b, e)
- Lisp_Object b, e;
+ (beg, end)
+ Lisp_Object beg, end;
{
- casify_region (CASE_CAPITALIZE, b, e);
+ casify_region (CASE_CAPITALIZE, beg, end);
return Qnil;
}
@@ -200,10 +200,10 @@ DEFUN ("upcase-initials-region", Fupcase_initials_region,
Subsequent letters of each word are not changed.\n\
In programs, give two arguments, the starting and ending\n\
character positions to operate on.")
- (b, e)
- Lisp_Object b, e;
+ (beg, end)
+ Lisp_Object beg, end;
{
- casify_region (CASE_CAPITALIZE_UP, b, e);
+ casify_region (CASE_CAPITALIZE_UP, beg, end);
return Qnil;
}