summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-mud/mcl/files/0.53.00-dynacomplete.patch')
-rw-r--r--games-mud/mcl/files/0.53.00-dynacomplete.patch11
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 ):