]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Merge MinGW surrogate build fix from pre-0.64.
authorJacob Nevins <jacobn@chiark.greenend.org.uk>
Mon, 3 Nov 2014 23:20:39 +0000 (23:20 +0000)
committerJacob Nevins <jacobn@chiark.greenend.org.uk>
Mon, 3 Nov 2014 23:20:39 +0000 (23:20 +0000)
putty.h

diff --git a/putty.h b/putty.h
index a0262caa26e51104cc0391e0c1056ae736f9f7bf..d8bddbae5891a4ec302e9cde50141647a9ce4a90 100644 (file)
--- a/putty.h
+++ b/putty.h
@@ -1442,12 +1442,14 @@ void request_callback_notifications(toplevel_callback_notify_fn_t notify,
 #endif
 
 /* SURROGATE PAIR */
-#ifndef IS_HIGH_SURROGATE
 #define HIGH_SURROGATE_START 0xd800
 #define HIGH_SURROGATE_END 0xdbff
 #define LOW_SURROGATE_START 0xdc00
 #define LOW_SURROGATE_END 0xdfff
 
+/* These macros exist in the Windows API, so the environment may
+ * provide them. If not, define them in terms of the above. */
+#ifndef IS_HIGH_SURROGATE
 #define IS_HIGH_SURROGATE(wch) (((wch) >= HIGH_SURROGATE_START) && \
                                 ((wch) <= HIGH_SURROGATE_END))
 #define IS_LOW_SURROGATE(wch) (((wch) >= LOW_SURROGATE_START) && \