diff options
| author | Karoly Lorentey | 2004-06-07 08:00:27 +0000 |
|---|---|---|
| committer | Karoly Lorentey | 2004-06-07 08:00:27 +0000 |
| commit | 620c7a273359e1b13adee5896933ce9fa122c860 (patch) | |
| tree | 8f521c5cec6811ff47163f3bbd96e2eb02020658 /src/keymap.c | |
| parent | c98e2d50e4f0f0eaf69520092cb94531545b221d (diff) | |
| parent | a0a2334679b7278ca0577a733c8ba8d0362a1a38 (diff) | |
| download | emacs-620c7a273359e1b13adee5896933ce9fa122c860.tar.gz emacs-620c7a273359e1b13adee5896933ce9fa122c860.zip | |
Merged in changes from CVS trunk.
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-376
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-377
(Fdisplay_supports_face_attributes_p): Work around bootstrapping problem
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-378
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-379
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-380
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-381
Face merging cleanups
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-190
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 60a6d177e35..30d66972094 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -1624,7 +1624,7 @@ DEFUN ("global-key-binding", Fglobal_key_binding, Sglobal_key_binding, 1, 2, 0, | |||
| 1624 | doc: /* Return the binding for command KEYS in current global keymap only. | 1624 | doc: /* Return the binding for command KEYS in current global keymap only. |
| 1625 | KEYS is a string, a sequence of keystrokes. | 1625 | KEYS is a string, a sequence of keystrokes. |
| 1626 | The binding is probably a symbol with a function definition. | 1626 | The binding is probably a symbol with a function definition. |
| 1627 | This function's return values are the same as those of lookup-key | 1627 | This function's return values are the same as those of `lookup-key' |
| 1628 | \(which see). | 1628 | \(which see). |
| 1629 | 1629 | ||
| 1630 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default | 1630 | If optional argument ACCEPT-DEFAULT is non-nil, recognize default |
| @@ -1951,7 +1951,7 @@ Lisp_Object Qsingle_key_description, Qkey_description; | |||
| 1951 | DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0, | 1951 | DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0, |
| 1952 | doc: /* Return a pretty description of key-sequence KEYS. | 1952 | doc: /* Return a pretty description of key-sequence KEYS. |
| 1953 | Optional arg PREFIX is the sequence of keys leading up to KEYS. | 1953 | Optional arg PREFIX is the sequence of keys leading up to KEYS. |
| 1954 | Control characters turn into "C-foo" sequences, meta into "M-foo" | 1954 | Control characters turn into "C-foo" sequences, meta into "M-foo", |
| 1955 | spaces are put between sequence elements, etc. */) | 1955 | spaces are put between sequence elements, etc. */) |
| 1956 | (keys, prefix) | 1956 | (keys, prefix) |
| 1957 | Lisp_Object keys, prefix; | 1957 | Lisp_Object keys, prefix; |
| @@ -3226,7 +3226,8 @@ describe_vector_princ (elt, fun) | |||
| 3226 | 3226 | ||
| 3227 | DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0, | 3227 | DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0, |
| 3228 | doc: /* Insert a description of contents of VECTOR. | 3228 | doc: /* Insert a description of contents of VECTOR. |
| 3229 | This is text showing the elements of vector matched against indices. */) | 3229 | This is text showing the elements of vector matched against indices. |
| 3230 | DESCRIBER is the output function used; nil means use `princ'. */) | ||
| 3230 | (vector, describer) | 3231 | (vector, describer) |
| 3231 | Lisp_Object vector, describer; | 3232 | Lisp_Object vector, describer; |
| 3232 | { | 3233 | { |