# HG changeset patch # User james # Date 1095653266 0 # Node ID 68f116fb679ab3f18f20307cb390026d66a36720 # Parent 56fcff52312c44eeb419afa0fe7df322346d1da1 [xemacs-hg @ 2004-09-20 04:07:40 by james] Fix the Windows build in the aftermath of the noreturn patch. diff -r 56fcff52312c -r 68f116fb679a src/ChangeLog --- a/src/ChangeLog Sun Sep 19 21:51:17 2004 +0000 +++ b/src/ChangeLog Mon Sep 20 04:07:46 2004 +0000 @@ -1,3 +1,8 @@ +2004-09-19 Jerry James + + * s/windowsnt.h (DECLARE_DOESNT_RETURN_TYPE): Remove extern so + that static funcions can be declared. + 2004-09-14 Jerry James * mule-canna.c (CANNA_NEW_WCHAR_AWARE): Define to use new wchar diff -r 56fcff52312c -r 68f116fb679a src/s/windowsnt.h --- a/src/s/windowsnt.h Sun Sep 19 21:51:17 2004 +0000 +++ b/src/s/windowsnt.h Mon Sep 20 04:07:46 2004 +0000 @@ -243,7 +243,7 @@ #if (_MSC_VER >= 1200) #define DOESNT_RETURN_TYPE(rettype) __declspec(noreturn) rettype #define DECLARE_DOESNT_RETURN_TYPE(rettype,decl) \ - __declspec(noreturn) extern rettype XCDECL decl + __declspec(noreturn) rettype XCDECL decl #endif /* MSVC 6.0 */ /* MSVC warnings no-no crap. When adding one to this section,