# # # patch "ChangeLog" # from [7abf47b0e389ea6386c4ec83d385232dc5b2a4cb] # to [7025dd6ee41314aa96c09d1c100b03f7c1d6fa9e] # # patch "win32/main.cc" # from [d297a6a74b3f56bc354f510ae4f179fd3578b56e] # to [2d76d1742f6b1e3a81903915b1f00b8d392ea2f6] # ============================================================ --- ChangeLog 7abf47b0e389ea6386c4ec83d385232dc5b2a4cb +++ ChangeLog 7025dd6ee41314aa96c09d1c100b03f7c1d6fa9e @@ -1,3 +1,9 @@ +2006-12-19 Matthew Gregan + + * win32/main.cc: Disable the C runtime's built-in globbing. This + piece of magic causes more trouble and UI inconsistency than it + seems to solve. + 2006-12-18 Richard Levitte * cmd_ws_commit.cc (CMD_NO_WORKSPACE(import)): Wrap the add, ============================================================ --- win32/main.cc d297a6a74b3f56bc354f510ae4f179fd3578b56e +++ win32/main.cc 2d76d1742f6b1e3a81903915b1f00b8d392ea2f6 @@ -34,6 +34,9 @@ #include #include +// Disable the C runtime's built-in filename globbing. +int _CRT_glob = 0; + // Microsoft + other compatible compilers such as Intel #if defined(_MSC_VER) #define MS_CRT_DEBUG_HOOK