]> git.eshelyaron.com Git - emacs.git/commitdiff
(prefix-arg, current-prefix-arg): Fix typo in a doc string.
authorPavel Janík <Pavel@Janik.cz>
Mon, 15 Oct 2001 08:13:24 +0000 (08:13 +0000)
committerPavel Janík <Pavel@Janik.cz>
Mon, 15 Oct 2001 08:13:24 +0000 (08:13 +0000)
src/ChangeLog
src/callint.c

index 2026d7e7fd773ae83211526cb096be69951b36cb..03da356c3ef78872de5c89f8b6aaf37aafd148f1 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * callint.c (prefix-arg, current-prefix-arg): Fix typo in a doc
+       string.
+
 2001-10-14  Stefan Monnier  <monnier@cs.yale.edu>
 
        * indent.c (skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE.
index 5aff585c4d54894eeab69ca5afb5481e55a9f45b..54ad0c2cf7e2d566ece9160e0db146f326f5d05c 100644 (file)
@@ -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;