]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fthis_command_keys, Fthis_command_keys_vector): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Sat, 27 Jan 2007 18:19:16 +0000 (18:19 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 27 Jan 2007 18:19:16 +0000 (18:19 +0000)
src/ChangeLog
src/keyboard.c

index f0d1b80ad7292da3e6cd2849a499c1439963f7f4..efb8c4b7e713db5b335f972376b0cf9200f2e125 100644 (file)
@@ -1,5 +1,7 @@
 2007-01-27  Eli Zaretskii  <eliz@gnu.org>
 
+       * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Doc fix.
+
        * minibuf.c (Fcompleting_read): Doc fix.
 
 2007-01-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
index 48cf2673a907a147bc69401455d6d0872dc67349..a238c838e66e1de50608e4af261db9f4f11c9c9d 100644 (file)
@@ -10297,7 +10297,9 @@ DEFUN ("this-command-keys", Fthis_command_keys, Sthis_command_keys, 0, 0, 0,
        doc: /* Return the key sequence that invoked this command.
 However, if the command has called `read-key-sequence', it returns
 the last key sequence that has been read.
-The value is a string or a vector.  */)
+The value is a string or a vector.
+
+See also `this-command-keys-vector'.  */)
      ()
 {
   return make_event_array (this_command_key_count,
@@ -10307,7 +10309,9 @@ The value is a string or a vector.  */)
 DEFUN ("this-command-keys-vector", Fthis_command_keys_vector, Sthis_command_keys_vector, 0, 0, 0,
        doc: /* Return the key sequence that invoked this command, as a vector.
 However, if the command has called `read-key-sequence', it returns
-the last key sequence that has been read.  */)
+the last key sequence that has been read.
+
+See also `this-command-keys'.  */)
      ()
 {
   return Fvector (this_command_key_count,