diff options
| author | Pavel Janík | 2001-10-15 08:13:24 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-10-15 08:13:24 +0000 |
| commit | dbae44c877a04bd0d6210d44dd05f4f682ddfeda (patch) | |
| tree | 1240dd411a6d54f24ba0da6cbe632fcaafd68c48 /src | |
| parent | 91c067f4771484cdf6f45414c8624a66ba96b3d8 (diff) | |
| download | emacs-dbae44c877a04bd0d6210d44dd05f4f682ddfeda.tar.gz emacs-dbae44c877a04bd0d6210d44dd05f4f682ddfeda.zip | |
(prefix-arg, current-prefix-arg): Fix typo in a doc string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/callint.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2026d7e7fd7..03da356c3ef 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | ||
| 2 | |||
| 3 | * callint.c (prefix-arg, current-prefix-arg): Fix typo in a doc | ||
| 4 | string. | ||
| 5 | |||
| 1 | 2001-10-14 Stefan Monnier <monnier@cs.yale.edu> | 6 | 2001-10-14 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 7 | ||
| 3 | * indent.c (skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE. | 8 | * indent.c (skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE. |
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 () | |||
| 868 | DEFVAR_KBOARD ("prefix-arg", Vprefix_arg, | 868 | DEFVAR_KBOARD ("prefix-arg", Vprefix_arg, |
| 869 | "The value of the prefix argument for the next editing command.\n\ | 869 | "The value of the prefix argument for the next editing command.\n\ |
| 870 | It may be a number, or the symbol `-' for just a minus sign as arg,\n\ | 870 | It may be a number, or the symbol `-' for just a minus sign as arg,\n\ |
| 871 | or a list whose car is a number for just one or more C-U's\n\ | 871 | or a list whose car is a number for just one or more C-u's\n\ |
| 872 | or nil if no argument has been specified.\n\ | 872 | or nil if no argument has been specified.\n\ |
| 873 | \n\ | 873 | \n\ |
| 874 | You cannot examine this variable to find the argument for this command\n\ | 874 | 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."); | |||
| 883 | DEFVAR_LISP ("current-prefix-arg", &Vcurrent_prefix_arg, | 883 | DEFVAR_LISP ("current-prefix-arg", &Vcurrent_prefix_arg, |
| 884 | "The value of the prefix argument for this editing command.\n\ | 884 | "The value of the prefix argument for this editing command.\n\ |
| 885 | It may be a number, or the symbol `-' for just a minus sign as arg,\n\ | 885 | It may be a number, or the symbol `-' for just a minus sign as arg,\n\ |
| 886 | or a list whose car is a number for just one or more C-U's\n\ | 886 | or a list whose car is a number for just one or more C-u's\n\ |
| 887 | or nil if no argument has been specified.\n\ | 887 | or nil if no argument has been specified.\n\ |
| 888 | This is what `(interactive \"P\")' returns."); | 888 | This is what `(interactive \"P\")' returns."); |
| 889 | Vcurrent_prefix_arg = Qnil; | 889 | Vcurrent_prefix_arg = Qnil; |