diff options
| author | Juanma Barranquero | 2010-09-24 05:35:55 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-09-24 05:35:55 +0200 |
| commit | eb652396790696c3e9a475d19bcbe620b459b123 (patch) | |
| tree | aef470609b0b2015216e33cbdacade3c3c9ef796 | |
| parent | 27ffea71fd15acd58cab73af8fb8f093ab40fdc9 (diff) | |
| download | emacs-eb652396790696c3e9a475d19bcbe620b459b123.tar.gz emacs-eb652396790696c3e9a475d19bcbe620b459b123.zip | |
Remove W32 API function pointer unused since 2005-02-15T23:19:26Z!jasonr@gnu.org.
* w32fns.c (clipboard_sequence_fn): Don't declare.
(globals_of_w32fns): Don't initialize it.
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/w32fns.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index abe59f5671e..b783d6b80fd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2010-09-24 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org). | ||
| 4 | * w32fns.c (clipboard_sequence_fn): Don't declare. | ||
| 5 | (globals_of_w32fns): Don't initialize it. | ||
| 6 | |||
| 1 | 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * syntax.c (back_comment): Detect the case where a 1-char comment | 9 | * syntax.c (back_comment): Detect the case where a 1-char comment |
diff --git a/src/w32fns.c b/src/w32fns.c index f91ad948828..5e5f11c813d 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -262,7 +262,6 @@ typedef BOOL (WINAPI * GetMonitorInfo_Proc) | |||
| 262 | (IN HMONITOR monitor, OUT struct MONITOR_INFO* info); | 262 | (IN HMONITOR monitor, OUT struct MONITOR_INFO* info); |
| 263 | 263 | ||
| 264 | TrackMouseEvent_Proc track_mouse_event_fn = NULL; | 264 | TrackMouseEvent_Proc track_mouse_event_fn = NULL; |
| 265 | ClipboardSequence_Proc clipboard_sequence_fn = NULL; | ||
| 266 | ImmGetCompositionString_Proc get_composition_string_fn = NULL; | 265 | ImmGetCompositionString_Proc get_composition_string_fn = NULL; |
| 267 | ImmGetContext_Proc get_ime_context_fn = NULL; | 266 | ImmGetContext_Proc get_ime_context_fn = NULL; |
| 268 | ImmReleaseContext_Proc release_ime_context_fn = NULL; | 267 | ImmReleaseContext_Proc release_ime_context_fn = NULL; |
| @@ -7183,9 +7182,6 @@ globals_of_w32fns (void) | |||
| 7183 | */ | 7182 | */ |
| 7184 | track_mouse_event_fn = (TrackMouseEvent_Proc) | 7183 | track_mouse_event_fn = (TrackMouseEvent_Proc) |
| 7185 | GetProcAddress (user32_lib, "TrackMouseEvent"); | 7184 | GetProcAddress (user32_lib, "TrackMouseEvent"); |
| 7186 | /* ditto for GetClipboardSequenceNumber. */ | ||
| 7187 | clipboard_sequence_fn = (ClipboardSequence_Proc) | ||
| 7188 | GetProcAddress (user32_lib, "GetClipboardSequenceNumber"); | ||
| 7189 | 7185 | ||
| 7190 | monitor_from_point_fn = (MonitorFromPoint_Proc) | 7186 | monitor_from_point_fn = (MonitorFromPoint_Proc) |
| 7191 | GetProcAddress (user32_lib, "MonitorFromPoint"); | 7187 | GetProcAddress (user32_lib, "MonitorFromPoint"); |