# # patch "ChangeLog" # from [da2308872f0eb7bd8bbe898a03c7d7ef47ffe7b5] # to [175848a819a8093259879618e17761b6919021dc] # # patch "lua.cc" # from [b7ee2c7123f4941b169840cb5149b9b7130dfb14] # to [a8af56ad7fe0d9baa85c265b05dd94877a806c19] # --- ChangeLog +++ ChangeLog @@ -1,5 +1,9 @@ 2005-07-04 Nathaniel Smith + * lua.cc (hook_get_netsync_write_permitted): Fix typo. + +2005-07-04 Nathaniel Smith + * globish.cc (globish_matcher_test): Add check for {foo} (no commas). --- lua.cc +++ lua.cc @@ -1077,7 +1077,7 @@ exec_ok = Lua(st) .func("get_netsync_write_permitted") .push_str(identity()) - .call(2,1) + .call(1,1) .extract_bool(permitted) .ok();