diff options
| author | Juanma Barranquero | 2004-06-05 00:30:12 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2004-06-05 00:30:12 +0000 |
| commit | 23715ea6ff22b0ab55641a1a0be76e3e4238fdf7 (patch) | |
| tree | 588fbc74c21ff5f3280fad7604e047cffd0531c0 /src/keymap.c | |
| parent | 8e330b2257db682ec067cdd72d8e7a4580f97505 (diff) | |
| download | emacs-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.c | 7 |
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. |
| 1624 | KEYS is a string, a sequence of keystrokes. | 1624 | KEYS is a string, a sequence of keystrokes. |
| 1625 | The binding is probably a symbol with a function definition. | 1625 | The binding is probably a symbol with a function definition. |
| 1626 | This function's return values are the same as those of lookup-key | 1626 | This function's return values are the same as those of `lookup-key' |
| 1627 | \(which see). | 1627 | \(which see). |
| 1628 | 1628 | ||
| 1629 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default | 1629 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default |
| @@ -1950,7 +1950,7 @@ Lisp_Object Qsingle_key_description, Qkey_description; | |||
| 1950 | DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0, | 1950 | DEFUN ("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. |
| 1952 | Optional arg PREFIX is the sequence of keys leading up to KEYS. | 1952 | Optional arg PREFIX is the sequence of keys leading up to KEYS. |
| 1953 | Control characters turn into "C-foo" sequences, meta into "M-foo" | 1953 | Control characters turn into "C-foo" sequences, meta into "M-foo", |
| 1954 | spaces are put between sequence elements, etc. */) | 1954 | spaces 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 | ||
| 3226 | DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0, | 3226 | DEFUN ("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. |
| 3228 | This is text showing the elements of vector matched against indices. */) | 3228 | This is text showing the elements of vector matched against indices. |
| 3229 | DESCRIBER 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 | { |