aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2007-01-27 18:19:16 +0000
committerEli Zaretskii2007-01-27 18:19:16 +0000
commit65849ada634f6dd628fc254f8d78ab26b21a6f5b (patch)
treed1810b84283130716142957754906c1d486ebc79 /src
parent634e516bef2b70d4aa96e5007155f76a5030f99f (diff)
downloademacs-65849ada634f6dd628fc254f8d78ab26b21a6f5b.tar.gz
emacs-65849ada634f6dd628fc254f8d78ab26b21a6f5b.zip
(Fthis_command_keys, Fthis_command_keys_vector): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/keyboard.c8
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 @@
12007-01-27 Eli Zaretskii <eliz@gnu.org> 12007-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
52007-01-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> 72007-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.
10298However, if the command has called `read-key-sequence', it returns 10298However, if the command has called `read-key-sequence', it returns
10299the last key sequence that has been read. 10299the last key sequence that has been read.
10300The value is a string or a vector. */) 10300The value is a string or a vector.
10301
10302See 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. */)
10307DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0, 10309DEFUN ("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.
10309However, if the command has called `read-key-sequence', it returns 10311However, if the command has called `read-key-sequence', it returns
10310the last key sequence that has been read. */) 10312the last key sequence that has been read.
10313
10314See also `this-command-keys'. */)
10311 () 10315 ()
10312{ 10316{
10313 return Fvector (this_command_key_count, 10317 return Fvector (this_command_key_count,