changeset 55913:c663e2e97168

(Fdescribe_vector): Fix docstring. (Fkey_description, Fglobal_key_binding): Fix typo in docstring.
author Juanma Barranquero <lekktu@gmail.com>
date Sat, 05 Jun 2004 00:28:36 +0000
parents 0b7bab25fcec
children 2a2827fa29a3
files src/keymap.c
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/keymap.c	Fri Jun 04 23:30:03 2004 +0000
+++ b/src/keymap.c	Sat Jun 05 00:28:36 2004 +0000
@@ -1623,7 +1623,7 @@
        doc: /* Return the binding for command KEYS in current global keymap only.
 KEYS is a string, a sequence of keystrokes.
 The binding is probably a symbol with a function definition.
-This function's return values are the same as those of lookup-key
+This function's return values are the same as those of `lookup-key'
 \(which see).
 
 If optional argument ACCEPT-DEFAULT is non-nil, recognize default
@@ -1950,7 +1950,7 @@
 DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
        doc: /* Return a pretty description of key-sequence KEYS.
 Optional arg PREFIX is the sequence of keys leading up to KEYS.
-Control characters turn into "C-foo" sequences, meta into "M-foo"
+Control characters turn into "C-foo" sequences, meta into "M-foo",
 spaces are put between sequence elements, etc.  */)
   (keys, prefix)
      Lisp_Object keys, prefix;
@@ -3225,7 +3225,8 @@
 
 DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
        doc: /* Insert a description of contents of VECTOR.
-This is text showing the elements of vector matched against indices.  */)
+This is text showing the elements of vector matched against indices.
+DESCRIBER is the output function used; nil means use `princ'.  */)
      (vector, describer)
      Lisp_Object vector, describer;
 {