summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-11 22:20:56 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-11-11 22:20:56 +0000
commit22634b30d0c7da3c2ae0317dc615ef19fb444044 (patch)
tree43d4d966837eac642332137a37ce5ca0983e96e8
parente141fc7c40288e0972f9241fddf09b5b69c78925 (diff)
downloadATCD-22634b30d0c7da3c2ae0317dc615ef19fb444044.tar.gz
ChangeLogTag:Mon Nov 11 16:17:59 2002 Nanbor Wang <nanbor@cs.wustl.edu>
-rw-r--r--ChangeLog10
-rw-r--r--ChangeLogs/ChangeLog-03a10
-rw-r--r--bin/MakeProjectCreator/modules/TemplateParser.pm2
3 files changed, 17 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index eda0679c2f1..aea89c534f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
+Mon Nov 11 16:17:59 2002 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * bin/MakeProjectCreator/modules/TemplateParser.pm (relative):
+ Changed to invoke slash_to_backslash from $self. The original
+ code only runs on some specific version of perl.
+
Mon Nov 11 13:35:53 2002 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
- * ace/Hash_Map_Manager_T.h: Updated
+ * ace/Hash_Map_Manager_T.h: Updated
comments on the class ACE_Hash_Map_Bucket_Iterator. Thanks to
Kitty and Irfan for helping with this.
@@ -54,7 +60,7 @@ Sun Nov 10 19:38:45 2002 Balachandran Natarajan <bala@isis-server.isis.vanderb
Sat Nov 9 12:37:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* docs/ACE-guidelines.html: Updated the ACE guidelines to
- refer to the correct Doxygen links. Thanks to
+ refer to the correct Doxygen links. Thanks to
Johnny Willemsen for reporting this.
Sat Nov 9 21:48:31 2002 Steve Huston <shuston@riverace.com>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index eda0679c2f1..aea89c534f1 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,6 +1,12 @@
+Mon Nov 11 16:17:59 2002 Nanbor Wang <nanbor@cs.wustl.edu>
+
+ * bin/MakeProjectCreator/modules/TemplateParser.pm (relative):
+ Changed to invoke slash_to_backslash from $self. The original
+ code only runs on some specific version of perl.
+
Mon Nov 11 13:35:53 2002 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
- * ace/Hash_Map_Manager_T.h: Updated
+ * ace/Hash_Map_Manager_T.h: Updated
comments on the class ACE_Hash_Map_Bucket_Iterator. Thanks to
Kitty and Irfan for helping with this.
@@ -54,7 +60,7 @@ Sun Nov 10 19:38:45 2002 Balachandran Natarajan <bala@isis-server.isis.vanderb
Sat Nov 9 12:37:54 2002 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* docs/ACE-guidelines.html: Updated the ACE guidelines to
- refer to the correct Doxygen links. Thanks to
+ refer to the correct Doxygen links. Thanks to
Johnny Willemsen for reporting this.
Sat Nov 9 21:48:31 2002 Steve Huston <shuston@riverace.com>
diff --git a/bin/MakeProjectCreator/modules/TemplateParser.pm b/bin/MakeProjectCreator/modules/TemplateParser.pm
index d93a9ad2d48..544264b3457 100644
--- a/bin/MakeProjectCreator/modules/TemplateParser.pm
+++ b/bin/MakeProjectCreator/modules/TemplateParser.pm
@@ -268,7 +268,7 @@ sub relative {
$val = '../' x $count;
$val =~ s/\/$//;
if ($self->{'prjc'}->convert_slashes()) {
- $val = slash_to_backslash($val);
+ $val = $self->slash_to_backslash($val);
}
substr($value, $start) =~ s/\$\([^)]+\)/$val/;
}