diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-12-02 09:27:56 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-12-02 09:27:56 +0000 |
commit | 29dc05f8b026eb08ddc4fdf8340567ed6467f581 (patch) | |
tree | 9274bdbb196fff2195cd11a84ad903eb1c2e0a51 /games-mud/mcl/files/0.53.00-dynacomplete.patch | |
parent | forced stable for x86 because of older tilp version security problems (Manife... (diff) | |
download | gentoo-2-29dc05f8b026eb08ddc4fdf8340567ed6467f581.tar.gz gentoo-2-29dc05f8b026eb08ddc4fdf8340567ed6467f581.tar.bz2 gentoo-2-29dc05f8b026eb08ddc4fdf8340567ed6467f581.zip |
Add patch to samples/contrib/DynaComplete.py (bug #72981)
Diffstat (limited to 'games-mud/mcl/files/0.53.00-dynacomplete.patch')
-rw-r--r-- | games-mud/mcl/files/0.53.00-dynacomplete.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-mud/mcl/files/0.53.00-dynacomplete.patch b/games-mud/mcl/files/0.53.00-dynacomplete.patch new file mode 100644 index 000000000000..3142cf9735c4 --- /dev/null +++ b/games-mud/mcl/files/0.53.00-dynacomplete.patch @@ -0,0 +1,11 @@ +--- mcl-0.53.00/samples/contrib/DynaComplete.py 1999-09-20 20:10:33.000000000 +0200 ++++ mcl-0.53.00/samples/contrib/DynaComplete.py 1999-09-20 20:10:33.000000000 +0200 +@@ -23,7 +23,7 @@ + self.dict = { } + self.userwords = { } + self.lookup = None +- self.wording = re.compile( '\s*(?P<word>[\w-#]+)' ) ++ self.wording = re.compile( '\s*(?P<word>[\w\-#]+)' ) + self.add_word( 'complete' ) + + def add_word( self, inword ): |