aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorJuanma Barranquero2004-06-05 00:30:12 +0000
committerJuanma Barranquero2004-06-05 00:30:12 +0000
commit23715ea6ff22b0ab55641a1a0be76e3e4238fdf7 (patch)
tree588fbc74c21ff5f3280fad7604e047cffd0531c0 /src/keymap.c
parent8e330b2257db682ec067cdd72d8e7a4580f97505 (diff)
downloademacs-23715ea6ff22b0ab55641a1a0be76e3e4238fdf7.tar.gz
emacs-23715ea6ff22b0ab55641a1a0be76e3e4238fdf7.zip
(Fdescribe_vector): Fix docstring.
(Fkey_description, Fglobal_key_binding): Fix typo in docstring.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c7
1 files changed, 4 insertions, 3 deletions
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,
1623 doc: /* Return the binding for command KEYS in current global keymap only. 1623 doc: /* Return the binding for command KEYS in current global keymap only.
1624KEYS is a string, a sequence of keystrokes. 1624KEYS is a string, a sequence of keystrokes.
1625The binding is probably a symbol with a function definition. 1625The binding is probably a symbol with a function definition.
1626This function's return values are the same as those of lookup-key 1626This function's return values are the same as those of `lookup-key'
1627\(which see). 1627\(which see).
1628 1628
1629If optional argument ACCEPT-DEFAULT is non-nil, recognize default 1629If optional argument ACCEPT-DEFAULT is non-nil, recognize default
@@ -1950,7 +1950,7 @@ Lisp_Object Qsingle_key_description, Qkey_description;
1950DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0, 1950DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0,
1951 doc: /* Return a pretty description of key-sequence KEYS. 1951 doc: /* Return a pretty description of key-sequence KEYS.
1952Optional arg PREFIX is the sequence of keys leading up to KEYS. 1952Optional arg PREFIX is the sequence of keys leading up to KEYS.
1953Control characters turn into "C-foo" sequences, meta into "M-foo" 1953Control characters turn into "C-foo" sequences, meta into "M-foo",
1954spaces are put between sequence elements, etc. */) 1954spaces are put between sequence elements, etc. */)
1955 (keys, prefix) 1955 (keys, prefix)
1956 Lisp_Object keys, prefix; 1956 Lisp_Object keys, prefix;
@@ -3225,7 +3225,8 @@ describe_vector_princ (elt, fun)
3225 3225
3226DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0, 3226DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0,
3227 doc: /* Insert a description of contents of VECTOR. 3227 doc: /* Insert a description of contents of VECTOR.
3228This is text showing the elements of vector matched against indices. */) 3228This is text showing the elements of vector matched against indices.
3229DESCRIBER is the output function used; nil means use `princ'. */)
3229 (vector, describer) 3230 (vector, describer)
3230 Lisp_Object vector, describer; 3231 Lisp_Object vector, describer;
3231{ 3232{