diff options
author | Matthias Andree <mandree@FreeBSD.org> | 2012-02-15 23:29:56 +0000 |
---|---|---|
committer | Matthias Andree <mandree@FreeBSD.org> | 2012-02-15 23:29:56 +0000 |
commit | 0cee5591d4543022b0d76e896d3e573fe3f1b4dd (patch) | |
tree | 59f017565553d775e3383dcac4795e957e5a8b56 /textproc/Makefile | |
parent | ff8224ca02b2e96a3d113f39d308e3a5b016c79d (diff) |
The main function of wiggle is to apply a patch to a file in a similar
manner to the patch(1) program.
The distinctive difference of wiggle is that it will attempt to apply a
patch even if the before part of the patch doesn't match the target
file perfectly. This is achieved by breaking the file and patch into
words and finding the best alignment of words in the file with words in
the patch. Once this alignment has been found, any differences (word-
wise) in the patch are applied to the file as best as possible.
Notes
Notes:
svn path=/head/; revision=291490
Diffstat (limited to 'textproc/Makefile')
-rw-r--r-- | textproc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 7540f16fef3c..d588dfd40e0b 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1413,6 +1413,7 @@ SUBDIR += webcpp SUBDIR += website SUBDIR += weka + SUBDIR += wiggle SUBDIR += word2x SUBDIR += wordnet SUBDIR += words |