Font.st
changeset 4006 8af191725687
parent 3934 9226f49c99d5
child 4007 f6f734115906
--- a/Font.st	Mon Feb 09 14:31:53 2004 +0100
+++ b/Font.st	Mon Feb 09 14:34:34 2004 +0100
@@ -474,7 +474,14 @@
 !Font methodsFor:'printing & storing'!
 
 encodingVectorFor:aspect
-    ^ Array with:(#family->self family) with:(#face->self face) with:(#style->self style) with:(#size->self size)
+    "binary storage encoding vector"
+
+    ^ Array 
+        with:(#family->self family) 
+        with:(#face->self face) 
+        with:(#style->self style) 
+        with:(#size->self size)
+        with:(#encoding->self encoding)
 !
 
 printOn:aStream
@@ -1077,7 +1084,7 @@
 !Font class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Font.st,v 1.88 2003-09-25 14:40:53 tm Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Font.st,v 1.89 2004-02-09 13:34:34 cg Exp $'
 ! !
 
 Font initialize!