1
0
Fork 0

ipa: Use String>>#expandMacrosWith: in the IPADispatcher

Make the code just work on Pharo and use the expandMacrosWith extension
for the String from the OsmoCore.
This commit is contained in:
Holger Hans Peter Freyther 2013-03-27 11:09:23 +01:00
parent 131d2465f9
commit b33d07309a
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ Object subclass: IPADispatcher [
| handler |
<category: 'handler'>
handler := handlers at: aStream ifAbsent: [
self logError: 'IPADispatcher has no registered handler for ', aStream displayString area: #ipa.
self logError: ('IPADispatcher has no registered handler for <1p>'
expandMacrosWith: aStream) area: #ipa.
^ false
].