diff options
| author | Stefan Monnier | 2001-11-19 06:46:41 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-11-19 06:46:41 +0000 |
| commit | 10c8c918b28e0aabd3142bf27ec9edeb9d79a1dc (patch) | |
| tree | fc067b9a5b4f97155bfc781ec1174b8c2da1dfcc /src | |
| parent | 5c98cd304cf035890b2f75673d71b8fd46733bed (diff) | |
| download | emacs-10c8c918b28e0aabd3142bf27ec9edeb9d79a1dc.tar.gz emacs-10c8c918b28e0aabd3142bf27ec9edeb9d79a1dc.zip | |
Don't include keymap.h any more.
(keys_of_frame): Remove.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/frame.c b/src/frame.c index ea38a088925..50410894c49 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -37,7 +37,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 37 | /* These help us bind and responding to switch-frame events. */ | 37 | /* These help us bind and responding to switch-frame events. */ |
| 38 | #include "commands.h" | 38 | #include "commands.h" |
| 39 | #include "keyboard.h" | 39 | #include "keyboard.h" |
| 40 | #include "keymap.h" | ||
| 41 | #include "frame.h" | 40 | #include "frame.h" |
| 42 | #ifdef HAVE_WINDOW_SYSTEM | 41 | #ifdef HAVE_WINDOW_SYSTEM |
| 43 | #include "fontset.h" | 42 | #include "fontset.h" |
| @@ -2565,12 +2564,3 @@ This variable is local to the current terminal and cannot be buffer-local. */); | |||
| 2565 | defsubr (&Sset_frame_size); | 2564 | defsubr (&Sset_frame_size); |
| 2566 | defsubr (&Sset_frame_position); | 2565 | defsubr (&Sset_frame_position); |
| 2567 | } | 2566 | } |
| 2568 | |||
| 2569 | void | ||
| 2570 | keys_of_frame () | ||
| 2571 | { | ||
| 2572 | initial_define_lispy_key (global_map, "switch-frame", "handle-switch-frame"); | ||
| 2573 | initial_define_lispy_key (global_map, "delete-frame", "handle-delete-frame"); | ||
| 2574 | initial_define_lispy_key (global_map, "iconify-frame", "ignore-event"); | ||
| 2575 | initial_define_lispy_key (global_map, "make-frame-visible", "ignore-event"); | ||
| 2576 | } | ||