Mercurial > emacs
changeset 110540:b1a96286ba6e
Remove W32 API function pointer unused since 2005-02-15 (revno 60055).
* w32fns.c (clipboard_sequence_fn): Don't declare.
(globals_of_w32fns): Don't initialize it.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 24 Sep 2010 05:35:55 +0200 |
parents | 257fdafa1a11 |
children | 9e932aebe7c5 |
files | src/ChangeLog src/w32fns.c |
diffstat | 2 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Sep 24 05:23:07 2010 +0200 +++ b/src/ChangeLog Fri Sep 24 05:35:55 2010 +0200 @@ -1,3 +1,9 @@ +2010-09-24 Juanma Barranquero <lekktu@gmail.com> + + Remove W32 API function pointer unused since 2005-02-15 (revno 60055). + * w32fns.c (clipboard_sequence_fn): Don't declare. + (globals_of_w32fns): Don't initialize it. + 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca> * syntax.c (back_comment): Detect the case where a 1-char comment
--- a/src/w32fns.c Fri Sep 24 05:23:07 2010 +0200 +++ b/src/w32fns.c Fri Sep 24 05:35:55 2010 +0200 @@ -262,7 +262,6 @@ (IN HMONITOR monitor, OUT struct MONITOR_INFO* info); TrackMouseEvent_Proc track_mouse_event_fn = NULL; -ClipboardSequence_Proc clipboard_sequence_fn = NULL; ImmGetCompositionString_Proc get_composition_string_fn = NULL; ImmGetContext_Proc get_ime_context_fn = NULL; ImmReleaseContext_Proc release_ime_context_fn = NULL; @@ -7183,9 +7182,6 @@ */ track_mouse_event_fn = (TrackMouseEvent_Proc) GetProcAddress (user32_lib, "TrackMouseEvent"); - /* ditto for GetClipboardSequenceNumber. */ - clipboard_sequence_fn = (ClipboardSequence_Proc) - GetProcAddress (user32_lib, "GetClipboardSequenceNumber"); monitor_from_point_fn = (MonitorFromPoint_Proc) GetProcAddress (user32_lib, "MonitorFromPoint");