diff options
author | Alexander Gramiak <agrambot@gmail.com> | 2019-04-11 09:00:58 -0600 |
---|---|---|
committer | Alexander Gramiak <agrambot@gmail.com> | 2019-04-26 16:10:49 -0600 |
commit | da9541dd1086b7bab52940c82915efe114bb7419 (patch) | |
tree | 24c279c12ad07586d77b30f410ce0ea1a38adcf6 /src/w32term.h | |
parent | ff4e31fa328a2cee5197beb20f068eb021712b5c (diff) | |
download | emacs-da9541dd1086b7bab52940c82915efe114bb7419.tar.gz |
Add prefixes to some window system-dependent procedures
* src/nsterm.m (note_mouse_movement):
* src/w32fns.c (construct_console_modifiers):
* src/w32inevt.c:
* src/w32term.c (frame_highlight, frame_unhighlight)
(construct_mouse_click, construct_mouse_wheel, construct_drag_n_drop)
(lispy_file_action, queue_notifications, note_mouse_movement):
* src/w32term.h:
* src/xterm.c (frame_highlight, frame_unhighlight)
(construct_mouse_click, note_mouse_movement, get_current_wm_state):
Add and use window system prefixes.
Diffstat (limited to 'src/w32term.h')
-rw-r--r-- | src/w32term.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h index 4c496e97e4a..a0942d630a5 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -732,7 +732,7 @@ struct notifications_set { }; extern struct notifications_set *notifications_set_head; extern Lisp_Object w32_get_watch_object (void *); -extern Lisp_Object lispy_file_action (DWORD); +extern Lisp_Object w32_lispy_file_action (DWORD); extern int handle_file_notifications (struct input_event *); extern void w32_initialize_display_info (Lisp_Object); |