1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

Don't include keymap.h any more.

(keys_of_frame): Remove.
This commit is contained in:
Stefan Monnier 2001-11-19 06:46:41 +00:00
parent 5c98cd304c
commit 10c8c918b2

View 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");
}