diff options
author | G.raud <graud@gmx.com> | 2018-02-08 10:48:53 +0100 |
---|---|---|
committer | G.raud <graud@gmx.com> | 2018-02-08 11:40:16 +0100 |
commit | 7baf60a8e76f066b51fc14e8b86b3368ec7ed803 (patch) | |
tree | 03b52d1a14b209d173bd41d923b9dd7545d221ee | |
parent | 71d38121701b26e5e9955a5a1c6a62bf79817839 (diff) | |
download | unison-7baf60a8e76f066b51fc14e8b86b3368ec7ed803.zip unison-7baf60a8e76f066b51fc14e8b86b3368ec7ed803.tar.gz unison-7baf60a8e76f066b51fc14e8b86b3368ec7ed803.tar.bz2 |
Fix documentation: backupnot is not like ignorenot
backup does not even apply to directories so the selection of a path
prefix cannot mask paths below it; ignore is the only option that can
mask subhierarchies.
-rw-r--r-- | src/stasher.ml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/stasher.ml b/src/stasher.ml index c850538..201c9b2 100644 --- a/src/stasher.ml +++ b/src/stasher.ml @@ -55,9 +55,7 @@ let backupnot = ("The values of this preference specify paths or individual files or" ^ " regular expressions that should {\\em not} " ^ "be backed up, even if the {\\tt backup} preference selects " - ^ "them---i.e., " - ^ "it selectively overrides {\\tt backup}. The same caveats apply here " - ^ "as with {\\tt ignore} and {\\tt ignorenot}.") + ^ "them---i.e., it selectively overrides {\\tt backup}.") let _ = Pred.alias backupnot "mirrornot" |