summaryrefslogtreecommitdiff
path: root/src/callint.c
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-10-15 08:13:24 +0000
committerPavel Janík <Pavel@Janik.cz>2001-10-15 08:13:24 +0000
commitdbae44c877a04bd0d6210d44dd05f4f682ddfeda (patch)
tree1240dd411a6d54f24ba0da6cbe632fcaafd68c48 /src/callint.c
parent91c067f4771484cdf6f45414c8624a66ba96b3d8 (diff)
downloademacs-dbae44c877a04bd0d6210d44dd05f4f682ddfeda.tar.gz
(prefix-arg, current-prefix-arg): Fix typo in a doc string.
Diffstat (limited to 'src/callint.c')
-rw-r--r--src/callint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/callint.c b/src/callint.c
index 5aff585c4d5..54ad0c2cf7e 100644
--- a/src/callint.c
+++ b/src/callint.c
@@ -868,7 +868,7 @@ syms_of_callint ()
DEFVAR_KBOARD ("prefix-arg", Vprefix_arg,
"The value of the prefix argument for the next editing command.\n\
It may be a number, or the symbol `-' for just a minus sign as arg,\n\
-or a list whose car is a number for just one or more C-U's\n\
+or a list whose car is a number for just one or more C-u's\n\
or nil if no argument has been specified.\n\
\n\
You cannot examine this variable to find the argument for this command\n\
@@ -883,7 +883,7 @@ See `prefix-arg' for the meaning of the value.");
DEFVAR_LISP ("current-prefix-arg", &Vcurrent_prefix_arg,
"The value of the prefix argument for this editing command.\n\
It may be a number, or the symbol `-' for just a minus sign as arg,\n\
-or a list whose car is a number for just one or more C-U's\n\
+or a list whose car is a number for just one or more C-u's\n\
or nil if no argument has been specified.\n\
This is what `(interactive \"P\")' returns.");
Vcurrent_prefix_arg = Qnil;