summaryrefslogtreecommitdiff
path: root/modules/Parser.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2003-06-20 15:09:22 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2003-06-20 15:09:22 +0000
commitd962a1f382b86d5a3d1f44efe0c2d945fbb11926 (patch)
treea53fd88a0a60341352efc777219a3f6ede0c3d80 /modules/Parser.pm
parent21236a4cc7013a33a08b27ba1054a0cc604c5fae (diff)
downloadMPC-d962a1f382b86d5a3d1f44efe0c2d945fbb11926.tar.gz
ChangeLogTag: Fri Jun 20 10:07:39 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/Parser.pm')
-rw-r--r--modules/Parser.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Parser.pm b/modules/Parser.pm
index 2094496a..25a2a1b1 100644
--- a/modules/Parser.pm
+++ b/modules/Parser.pm
@@ -172,7 +172,7 @@ sub escape_regex_special {
my($self) = shift;
my($name) = shift;
- $name =~ s/([\\\$\[\]\(\)\.])/\\$1/g;
+ $name =~ s/([\+\-\\\$\[\]\(\)\.])/\\$1/g;
return $name;
}