changeset 39945:c4d061857bb0

(prefix-arg, current-prefix-arg): Fix typo in a doc string.
author Pavel Janík <Pavel@Janik.cz>
date Mon, 15 Oct 2001 08:12:52 +0000
parents e4eb4dd01fa5
children 7cb5950539e9
files src/callint.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/callint.c	Mon Oct 15 02:51:50 2001 +0000
+++ b/src/callint.c	Mon Oct 15 08:12:52 2001 +0000
@@ -868,7 +868,7 @@
   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 @@
   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;