aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2008-05-21 09:25:50 +0000
committerJuanma Barranquero2008-05-21 09:25:50 +0000
commit65a6ff8fb5e92270abf1a4e856f0798190f2b6dc (patch)
tree167a4945f183322cb5bcd029bd78e3438bbf1694 /src
parente9f6a88fc9d902671856790a2241db9e9b0617a4 (diff)
downloademacs-65a6ff8fb5e92270abf1a4e856f0798190f2b6dc.tar.gz
emacs-65a6ff8fb5e92270abf1a4e856f0798190f2b6dc.zip
Fix typo in comment.
Diffstat (limited to 'src')
-rw-r--r--src/w32term.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/w32term.c b/src/w32term.c
index 101b7d58f71..348df816aab 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -131,14 +131,14 @@ typedef struct tagWCRANGE
131 USHORT cGlyphs; 131 USHORT cGlyphs;
132} WCRANGE; 132} WCRANGE;
133 133
134typedef struct tagGLYPHSET 134typedef struct tagGLYPHSET
135{ 135{
136 DWORD cbThis; 136 DWORD cbThis;
137 DWORD flAccel; 137 DWORD flAccel;
138 DWORD cGlyphsSupported; 138 DWORD cGlyphsSupported;
139 DWORD cRanges; 139 DWORD cRanges;
140 WCRANGE ranges[1]; 140 WCRANGE ranges[1];
141} GLYPHSET; 141} GLYPHSET;
142 142
143#endif 143#endif
144 144
@@ -4805,7 +4805,7 @@ w32_read_socket (sd, expected, hold_quit)
4805 inev.timestamp = msg.msg.time; 4805 inev.timestamp = msg.msg.time;
4806 } 4806 }
4807 break; 4807 break;
4808 4808
4809 case WM_MOUSEMOVE: 4809 case WM_MOUSEMOVE:
4810 /* Ignore non-movement. */ 4810 /* Ignore non-movement. */
4811 { 4811 {
@@ -7119,7 +7119,7 @@ w32_initialize ()
7119 program. Unfortunately, we have good reasons for doing that, so 7119 program. Unfortunately, we have good reasons for doing that, so
7120 instead we need to send messages to windowsThread to make some API 7120 instead we need to send messages to windowsThread to make some API
7121 calls for us (ones that affect, or depend on, the active/focus 7121 calls for us (ones that affect, or depend on, the active/focus
7122 window state. */ 7122 window state.) */
7123#ifdef ATTACH_THREADS 7123#ifdef ATTACH_THREADS
7124 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE); 7124 AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
7125#endif 7125#endif
@@ -7134,7 +7134,7 @@ w32_initialize ()
7134#define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn) 7134#define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
7135 7135
7136 LOAD_PROC (gdi_lib, GetFontUnicodeRanges); 7136 LOAD_PROC (gdi_lib, GetFontUnicodeRanges);
7137 7137
7138#undef LOAD_PROC 7138#undef LOAD_PROC
7139 7139
7140 FreeLibrary (gdi_lib); 7140 FreeLibrary (gdi_lib);