aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorKaroly Lorentey2004-06-07 08:00:27 +0000
committerKaroly Lorentey2004-06-07 08:00:27 +0000
commit620c7a273359e1b13adee5896933ce9fa122c860 (patch)
tree8f521c5cec6811ff47163f3bbd96e2eb02020658 /src/keymap.c
parentc98e2d50e4f0f0eaf69520092cb94531545b221d (diff)
parenta0a2334679b7278ca0577a733c8ba8d0362a1a38 (diff)
downloademacs-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.c7
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.
1625KEYS is a string, a sequence of keystrokes. 1625KEYS is a string, a sequence of keystrokes.
1626The binding is probably a symbol with a function definition. 1626The binding is probably a symbol with a function definition.
1627This function's return values are the same as those of lookup-key 1627This function's return values are the same as those of `lookup-key'
1628\(which see). 1628\(which see).
1629 1629
1630If optional argument ACCEPT-DEFAULT is non-nil, recognize default 1630If optional argument ACCEPT-DEFAULT is non-nil, recognize default
@@ -1951,7 +1951,7 @@ Lisp_Object Qsingle_key_description, Qkey_description;
1951DEFUN ("key-description", Fkey_description, Skey_description, 1, 2, 0, 1951DEFUN ("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.
1953Optional arg PREFIX is the sequence of keys leading up to KEYS. 1953Optional arg PREFIX is the sequence of keys leading up to KEYS.
1954Control characters turn into "C-foo" sequences, meta into "M-foo" 1954Control characters turn into "C-foo" sequences, meta into "M-foo",
1955spaces are put between sequence elements, etc. */) 1955spaces 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
3227DEFUN ("describe-vector", Fdescribe_vector, Sdescribe_vector, 1, 2, 0, 3227DEFUN ("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.
3229This is text showing the elements of vector matched against indices. */) 3229This is text showing the elements of vector matched against indices.
3230DESCRIBER 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{