CharacterArray.st
changeset 3607 4518499d5385
parent 3599 fea09a812f55
child 3608 0eab11b4b351
--- a/CharacterArray.st	Thu Jun 18 15:52:44 1998 +0200
+++ b/CharacterArray.st	Thu Jun 18 16:03:37 1998 +0200
@@ -2095,6 +2095,21 @@
 
 !CharacterArray methodsFor:'Compatibility - ST80'!
 
+expandMacros
+    "ST80 compatibility - expand '<..>' macros with
+     argument strings. Similar to #bindWith:.
+     Read the comment in #expandMacrosWithArguments: about
+     limited compatibility issues."
+
+    ^ self expandMacrosWithArguments:#()
+
+    "
+     'hello<n>foo' expandMacros
+    "
+
+    "Modified: / 18.6.1998 / 16:03:02 / cg"
+!
+
 expandMacrosWith:arg
     "ST80 compatibility - expand '<..>' macros with
      argument strings. Similar to #bindWith:.
@@ -5147,6 +5162,6 @@
 !CharacterArray class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.148 1998-06-17 10:52:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/CharacterArray.st,v 1.149 1998-06-18 14:03:37 cg Exp $'
 ! !
 CharacterArray initialize!