aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorKaroly Lorentey2004-08-03 12:45:59 +0000
committerKaroly Lorentey2004-08-03 12:45:59 +0000
commit4fce8dfae60dce6a19bef88ce893bcc019576c66 (patch)
tree41dcfb7ebfda8af1faba9e2833283f3dd1fba472 /src/keymap.c
parentd0e37e4839b378aa90ba6686013f9563cc3c0821 (diff)
parented5c373cab5483317a8b6fca3d8d4d52432934fc (diff)
downloademacs-4fce8dfae60dce6a19bef88ce893bcc019576c66.tar.gz
emacs-4fce8dfae60dce6a19bef88ce893bcc019576c66.zip
Merged in changes from CVS trunk.
Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-473 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-474 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-475 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-476 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-477 Update from CVS * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-478 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-225
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 42bbeb92a18..ee4f41de6b8 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -343,7 +343,7 @@ keymap_memberp (map, maps)
343 343
344DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0, 344DEFUN ("set-keymap-parent", Fset_keymap_parent, Sset_keymap_parent, 2, 2, 0,
345 doc: /* Modify KEYMAP to set its parent map to PARENT. 345 doc: /* Modify KEYMAP to set its parent map to PARENT.
346PARENT should be nil or another keymap. */) 346Return PARENT. PARENT should be nil or another keymap. */)
347 (keymap, parent) 347 (keymap, parent)
348 Lisp_Object keymap, parent; 348 Lisp_Object keymap, parent;
349{ 349{
@@ -1687,7 +1687,8 @@ If a second optional argument MAPVAR is given, the map is stored as
1687its value instead of as COMMAND's value; but COMMAND is still defined 1687its value instead of as COMMAND's value; but COMMAND is still defined
1688as a function. 1688as a function.
1689The third optional argument NAME, if given, supplies a menu name 1689The third optional argument NAME, if given, supplies a menu name
1690string for the map. This is required to use the keymap as a menu. */) 1690string for the map. This is required to use the keymap as a menu.
1691This function returns COMMAND. */)
1691 (command, mapvar, name) 1692 (command, mapvar, name)
1692 Lisp_Object command, mapvar, name; 1693 Lisp_Object command, mapvar, name;
1693{ 1694{