aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.c
diff options
context:
space:
mode:
authorStefan Monnier2000-10-27 22:20:19 +0000
committerStefan Monnier2000-10-27 22:20:19 +0000
commit020676925cfa3fee6a016bcbee89635dc647036f (patch)
treea4e3a50558adeba85798f52dd015cd24c076aa3e /src/w32term.c
parentb01c997e2b7319b27bf1a57c65bc484178f6772e (diff)
downloademacs-020676925cfa3fee6a016bcbee89635dc647036f.tar.gz
emacs-020676925cfa3fee6a016bcbee89635dc647036f.zip
* lisp.h (KEYMAPP): New macro.
(get_keymap): Remove. (get_keymap_1): Rename get_keymap. * keyboard.h (get_keymap_1, Fkeymapp): Remove prototype. * xterm.c (note_mode_line_highlight): Use KEYMAPP. * xmenu.c (single_submenu): Use KEYMAPP. (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp. Use KEYMAPP rather than Fkeymapp. * w32term.c (note_mode_line_highlight): Use KEYMAPP. * w32menu.c (True, False): Remove (use TRUE and FALSE instead). (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp. Use KEYMAPP rather than Fkeymapp. (single_submenu): Use KEYMAPP. (w32_menu_show, w32_dialog_show): Use TRUE. * minibuf.c (Fread_from_minibuffer): Update call to get_keymap. * keymap.c (KEYMAPP): Remove (moved to lisp.h). (Fkeymapp): Use KEYMAPP. (get_keymap): Rename from get_keymap_1. Remove old def. Return t when autoload=0 and error=0 and the keymap needs autoloading. (Fcopy_keymap): Check (eq (car x) 'keymap) rather than using Fkeymapp. (Fminor_mode_key_binding): Don't raise an error if the binding is not a keymap. (Fuse_global_map, Fuse_local_map): Allow autoloading. (Faccessible_keymaps): Fetch keymaps rather than checking Fkeymapp. * keyboard.c (read_char): get_keymap_1 -> get_keymap. Allow Vspecial_event_map to be autoloaded. (menu_bar_items): Fetch the keymap rather than using keymapp. (menu_bar_one_keymap): No need to follow func-indirect any more. (parse_menu_item): get_keymap_1 -> get_keymap. (tool_bar_items): Fetch the keymap rather than using keymapp. (read_key_sequence): Use KEYMAPP. * intervals.c (get_local_map): Use get_keymap rather than following function-indirections explicitly. * doc.c (Fsubstitute_command_keys): get_keymap_1 -> get_keymap.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.c b/src/w32term.c
index 23cde3c0522..4bea6a87c61 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -5931,7 +5931,7 @@ note_mode_line_highlight (w, x, mode_line_p)
5931 /* Change the mouse pointer according to what is under X/Y. */ 5931 /* Change the mouse pointer according to what is under X/Y. */
5932 map = Fget_text_property (make_number (glyph->charpos), 5932 map = Fget_text_property (make_number (glyph->charpos),
5933 Qlocal_map, glyph->object); 5933 Qlocal_map, glyph->object);
5934 if (!NILP (Fkeymapp (map))) 5934 if (KEYMAPP (map))
5935 cursor = f->output_data.w32->nontext_cursor; 5935 cursor = f->output_data.w32->nontext_cursor;
5936 } 5936 }
5937 } 5937 }