diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-21 13:40:06 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-21 13:41:17 -0400 |
commit | c6d1ae33d224486f347d39005e516f514c613d3c (patch) | |
tree | ae831d4b5a39ef7a3ea384dab61880f2f564373c /IkiWiki/Rcs/tla.pm | |
parent | a204f86786d25214fa19f605c26815c068cc4b43 (diff) | |
download | ikiwiki-c6d1ae33d224486f347d39005e516f514c613d3c.tar ikiwiki-c6d1ae33d224486f347d39005e516f514c613d3c.tar.gz |
All rcs backends need to implement rcs_remove
(Done for svn, git.)
Diffstat (limited to 'IkiWiki/Rcs/tla.pm')
-rw-r--r-- | IkiWiki/Rcs/tla.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/IkiWiki/Rcs/tla.pm b/IkiWiki/Rcs/tla.pm index e7fed9ad8..29dbd092a 100644 --- a/IkiWiki/Rcs/tla.pm +++ b/IkiWiki/Rcs/tla.pm @@ -88,6 +88,12 @@ sub rcs_add ($) { #{{{ } } #}}} +sub rcs_remove ($) { # {{{ + my $file = shift; + + error("rcs_remove not implemented for tla"); # TODO +} #}}} + sub rcs_recentchanges ($) { my $num=shift; my @ret; |