Font.st
changeset 700 0b62c54f0391
parent 667 091cc1707848
child 710 f80fd1a73956
--- a/Font.st	Mon May 20 10:46:31 1996 +0200
+++ b/Font.st	Mon May 20 10:48:28 1996 +0200
@@ -494,10 +494,10 @@
                                encoding:encoding.
     ].
     id notNil ifTrue:[
-        ('FONT: use alternative for ' , (self userFriendlyName)) infoPrintNL.
+        ('FONT: use alternative for ' , (self userFriendlyName)) infoPrintCR.
     ] ifFalse:[
         id := aDevice getDefaultFont.
-        ('FONT: use default for ' , (self userFriendlyName)) infoPrintNL.
+        ('FONT: use default for ' , (self userFriendlyName)) infoPrintCR.
     ].
     id isNil ifTrue:[
         "oops did not work - this is a serious an error"
@@ -510,7 +510,7 @@
     Lobby register:f.
     ^ f
 
-    "Modified: 24.2.1996 / 19:56:11 / cg"
+    "Modified: 20.5.1996 / 10:32:23 / cg"
 ! !
 
 !Font methodsFor:'instance release'!
@@ -1072,6 +1072,6 @@
 !Font class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Font.st,v 1.42 1996-05-12 12:20:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Font.st,v 1.43 1996-05-20 08:48:28 cg Exp $'
 ! !
 Font initialize!