# # # delete "win32/wcwidth.c" # # patch "ChangeLog" # from [b4aadc0c82eab54b7248bb01a72826bb4e09e099] # to [c0df895f0e6c2bb6044d324f848f82abdaa2526a] # # patch "platform.hh" # from [53e52a54ed1b569636c150010edf0a3381c9305f] # to [f0d95c6add214117b2aa25646a9f62f750764a53] # ============================================================ --- ChangeLog b4aadc0c82eab54b7248bb01a72826bb4e09e099 +++ ChangeLog c0df895f0e6c2bb6044d324f848f82abdaa2526a @@ -1,3 +1,8 @@ +2006-01-11 Matthew Gregan
+ + * platform.hh, win32/wcwidth.c: Remove local wcswidth + implementation--it's no longer needed. + 2006-01-10 Derek Scherger * tests/t_revert_unchanged.at: new test to check that reverting ============================================================ --- platform.hh 53e52a54ed1b569636c150010edf0a3381c9305f +++ platform.hh f0d95c6add214117b2aa25646a9f62f750764a53 @@ -59,9 +59,4 @@ void rename_clobberingly(any_path const & from, any_path const & to); -#ifdef WIN32 -// Win32 doesn't have wcswidth, so we supply our own implementation. -extern "C" int wcswidth(const wchar_t * pwcs, size_t n); -#endif - #endif // __PLATFORM_HH__