diff options
| author | Eli Zaretskii | 2007-01-27 18:19:16 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-01-27 18:19:16 +0000 |
| commit | 65849ada634f6dd628fc254f8d78ab26b21a6f5b (patch) | |
| tree | d1810b84283130716142957754906c1d486ebc79 /src | |
| parent | 634e516bef2b70d4aa96e5007155f76a5030f99f (diff) | |
| download | emacs-65849ada634f6dd628fc254f8d78ab26b21a6f5b.tar.gz emacs-65849ada634f6dd628fc254f8d78ab26b21a6f5b.zip | |
(Fthis_command_keys, Fthis_command_keys_vector): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/keyboard.c | 8 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f0d1b80ad72..efb8c4b7e71 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2007-01-27 Eli Zaretskii <eliz@gnu.org> | 1 | 2007-01-27 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Doc fix. | ||
| 4 | |||
| 3 | * minibuf.c (Fcompleting_read): Doc fix. | 5 | * minibuf.c (Fcompleting_read): Doc fix. |
| 4 | 6 | ||
| 5 | 2007-01-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 7 | 2007-01-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
diff --git a/src/keyboard.c b/src/keyboard.c index 48cf2673a90..a238c838e66 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -10297,7 +10297,9 @@ DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0, | |||
| 10297 | doc: /* Return the key sequence that invoked this command. | 10297 | doc: /* Return the key sequence that invoked this command. |
| 10298 | However, if the command has called `read-key-sequence', it returns | 10298 | However, if the command has called `read-key-sequence', it returns |
| 10299 | the last key sequence that has been read. | 10299 | the last key sequence that has been read. |
| 10300 | The value is a string or a vector. */) | 10300 | The value is a string or a vector. |
| 10301 | |||
| 10302 | See also `this-command-keys-vector'. */) | ||
| 10301 | () | 10303 | () |
| 10302 | { | 10304 | { |
| 10303 | return make_event_array (this_command_key_count, | 10305 | return make_event_array (this_command_key_count, |
| @@ -10307,7 +10309,9 @@ The value is a string or a vector. */) | |||
| 10307 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0, | 10309 | DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0, |
| 10308 | doc: /* Return the key sequence that invoked this command, as a vector. | 10310 | doc: /* Return the key sequence that invoked this command, as a vector. |
| 10309 | However, if the command has called `read-key-sequence', it returns | 10311 | However, if the command has called `read-key-sequence', it returns |
| 10310 | the last key sequence that has been read. */) | 10312 | the last key sequence that has been read. |
| 10313 | |||
| 10314 | See also `this-command-keys'. */) | ||
| 10311 | () | 10315 | () |
| 10312 | { | 10316 | { |
| 10313 | return Fvector (this_command_key_count, | 10317 | return Fvector (this_command_key_count, |