diff options
| author | Juanma Barranquero | 2002-05-16 11:53:41 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-05-16 11:53:41 +0000 |
| commit | 4052e7bb0cc284b2ed3e502f8be08c804614c495 (patch) | |
| tree | d229cc4558a2f8ada1eee58f7d347d26f127ad6c /src | |
| parent | 6afa54040395da3fdd2b9b71cad78f26bc5f5f31 (diff) | |
| download | emacs-4052e7bb0cc284b2ed3e502f8be08c804614c495.tar.gz emacs-4052e7bb0cc284b2ed3e502f8be08c804614c495.zip | |
(Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index 63df3408b7b..5e0871f445f 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -9599,7 +9599,7 @@ DEFUN ("recent-keys", Frecent_keys, Srecent_keys, 0, 0, 0, | |||
| 9599 | DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0, | 9599 | DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0, |
| 9600 | doc: /* Return the key sequence that invoked this command. | 9600 | doc: /* Return the key sequence that invoked this command. |
| 9601 | However, if the command has called `read-key-sequence', it returns | 9601 | However, if the command has called `read-key-sequence', it returns |
| 9602 | the the last key sequence that has been read. | 9602 | the last key sequence that has been read. |
| 9603 | The value is a string or a vector. */) | 9603 | The value is a string or a vector. */) |
| 9604 | () | 9604 | () |
| 9605 | { | 9605 | { |
| @@ -9610,7 +9610,7 @@ The value is a string or a vector. */) | |||
| 9610 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0, | 9610 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0, |
| 9611 | doc: /* Return the key sequence that invoked this command, as a vector. | 9611 | doc: /* Return the key sequence that invoked this command, as a vector. |
| 9612 | However, if the command has called `read-key-sequence', it returns | 9612 | However, if the command has called `read-key-sequence', it returns |
| 9613 | the the last key sequence that has been read. */) | 9613 | the last key sequence that has been read. */) |
| 9614 | () | 9614 | () |
| 9615 | { | 9615 | { |
| 9616 | return Fvector (this_command_key_count, | 9616 | return Fvector (this_command_key_count, |