# # # patch "ChangeLog" # from [6bfb3d4486d068407341d8d49e9b87cbc06c7c74] # to [524608ea4e64b4b40644a9fe1ddbcbdb848095ce] # # patch "contrib/monotone.bash_completion" # from [213230a658354149a030c2ba08c6447fc4f48e0e] # to [4cf1b15e1a927ed73947f9f95874e36e88fa8551] # ============================================================ --- ChangeLog 6bfb3d4486d068407341d8d49e9b87cbc06c7c74 +++ ChangeLog 524608ea4e64b4b40644a9fe1ddbcbdb848095ce @@ -1,3 +1,7 @@ +2007-01-05 Matthew Nicholson
+ + * contrib/monotone.bash_completion: Updated completion for "mtn log". + 2007-01-04 Zack Weinberg * botan/gzip.cpp: Use specific subclasses of Botan::Exception ============================================================ --- contrib/monotone.bash_completion 213230a658354149a030c2ba08c6447fc4f48e0e +++ contrib/monotone.bash_completion 4cf1b15e1a927ed73947f9f95874e36e88fa8551 @@ -157,7 +157,12 @@ _monotone() { COMPREPLY=( $(compgen -W '--revision -r' -- $cur ) ) _filedir ;; - log | approve | disapprove | comment | tag | testresult | cert | explicit_merge | trusted | update ) + log ) + COMPREPLY=( $(compgen -W '--brief --diffs --last --next --no-files + --no-merges --revision -r' -- $cur ) ) + _filedir + ;; + approve | disapprove | comment | tag | testresult | cert | explicit_merge | trusted | update ) _monotone_complete revision ;; ls | list ) @@ -204,7 +209,7 @@ _monotone() { cat ) _monotone_complete $prev ;; - log | attr ) + attr ) _filedir ;; list )