]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't include keymap.h any more.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Nov 2001 06:46:41 +0000 (06:46 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Nov 2001 06:46:41 +0000 (06:46 +0000)
(keys_of_frame): Remove.

src/frame.c

index ea38a088925fd451eab1f2365177b20c553c9c07..50410894c49e51f26322135a97dbb96a57d4dc9e 100644 (file)
@@ -37,7 +37,6 @@ Boston, MA 02111-1307, USA.  */
 /* These help us bind and responding to switch-frame events.  */
 #include "commands.h"
 #include "keyboard.h"
-#include "keymap.h"
 #include "frame.h"
 #ifdef HAVE_WINDOW_SYSTEM
 #include "fontset.h"
@@ -2565,12 +2564,3 @@ This variable is local to the current terminal and cannot be buffer-local.  */);
   defsubr (&Sset_frame_size);
   defsubr (&Sset_frame_position);
 }
-
-void
-keys_of_frame ()
-{
-  initial_define_lispy_key (global_map, "switch-frame", "handle-switch-frame");
-  initial_define_lispy_key (global_map, "delete-frame", "handle-delete-frame");
-  initial_define_lispy_key (global_map, "iconify-frame", "ignore-event");
-  initial_define_lispy_key (global_map, "make-frame-visible", "ignore-event");
-}