EpsonFX1PrinterStream.st
changeset 3997 856722248c9f
parent 1651 020ab0e0ae2f
child 4197 51449951faf2
--- a/EpsonFX1PrinterStream.st	Thu Jul 07 20:22:14 2016 +0200
+++ b/EpsonFX1PrinterStream.st	Mon Jul 11 14:58:25 2016 +0200
@@ -9,8 +9,9 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
+"{ Package: 'stx:libbasic2' }"
 
-"{ Package: 'stx:libbasic2' }"
+"{ NameSpace: Smalltalk }"
 
 PrinterStream subclass:#EpsonFX1PrinterStream
 	instanceVariableNames:''
@@ -104,7 +105,7 @@
 
     |ascii|
 
-    ascii := aCharacter asciiValue.
+    ascii := aCharacter codePoint.
     (ascii < 128) ifTrue:[
         ^ stream nextPut:aCharacter
     ].
@@ -255,7 +256,8 @@
 !EpsonFX1PrinterStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/EpsonFX1PrinterStream.st,v 1.19 2006-08-07 13:27:05 fm Exp $'
+    ^ '$Header$'
 ! !
 
+
 EpsonFX1PrinterStream initialize!