This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/src/if_perl.xs Wed Feb 29 19:20:03 2012 +0100 | |
+++ b/src/if_perl.xs Tue Mar 13 17:15:51 2012 +0900 | |
@@ -913,24 +913,6 @@ | |
win_T *win_find_nr(int n) { return curwin; } | |
#endif | |
-XS(XS_VIM_Msg); | |
-XS(XS_VIM_SetOption); | |
-XS(XS_VIM_DoCommand); | |
-XS(XS_VIM_Eval); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ZOO_LOG4J_PROP="INFO,ROLLINGFILE" | |
ZOO_LOG_DIR="/var/log/zookeeper/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
$existing_methods = [] | |
def print_methods(library) | |
new_methods = [].methods.sort - $existing_methods | |
for method in new_methods | |
puts "Array##{method}" | |
end | |
puts "(total: #{new_methods.size} added by #{library})\n\n" |
NewerOlder