aboutsummaryrefslogtreecommitdiffstats
path: root/src/ruleparser.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago@cassini.local.lan>2007-12-27 15:29:54 -0200
committerThiago Macieira <thiago@cassini.local.lan>2007-12-27 15:29:54 -0200
commitb4cb51888233275e6ec09f084f9fba371e01e759 (patch)
tree61d46c97a442684ed986bac6bd85aa51ed8a4061 /src/ruleparser.h
parenta812d0b14d8e341c48201354122578705af873e4 (diff)
downloadsvn2git-b4cb51888233275e6ec09f084f9fba371e01e759.tar
svn2git-b4cb51888233275e6ec09f084f9fba371e01e759.tar.gz
svn2git-b4cb51888233275e6ec09f084f9fba371e01e759.tar.bz2
svn2git-b4cb51888233275e6ec09f084f9fba371e01e759.tar.xz
svn2git-b4cb51888233275e6ec09f084f9fba371e01e759.zip
Reintroduce the recurse rule. It's useful if you have a catch-all ignore rule.
Diffstat (limited to 'src/ruleparser.h')
-rw-r--r--src/ruleparser.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ruleparser.h b/src/ruleparser.h
index d70a39b..9525f14 100644
--- a/src/ruleparser.h
+++ b/src/ruleparser.h
@@ -50,7 +50,8 @@ public:
enum Action {
Ignore,
- Export
+ Export,
+ Recurse
} action;
Match() : minRevision(-1), maxRevision(-1), lineNumber(0), action(Ignore) { }