From 23715ea6ff22b0ab55641a1a0be76e3e4238fdf7 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Sat, 5 Jun 2004 00:30:12 +0000 Subject: [PATCH] (Fdescribe_vector): Fix docstring. (Fkey_description, Fglobal_key_binding): Fix typo in docstring. --- src/ChangeLog | 5 +++++ src/keymap.c | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index d9000d6dd05..46e30ea9ca6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2004-06-05 Juanma Barranquero + + * keymap.c (Fdescribe_vector): Fix docstring. + (Fkey_description, Fglobal_key_binding): Fix typo in docstring. + 2004-06-05 Miles Bader * xfaces.c (tty_supports_face_attributes_p): Make sure the specified diff --git a/src/keymap.c b/src/keymap.c index 3630bf76368..cc2d21ba927 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1623,7 +1623,7 @@ DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, 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 @@ Lisp_Object Qsingle_key_description, Qkey_description; 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 @@ describe_vector_princ (elt, fun) 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; { -- 2.39.5