added: #version_CVS
authorClaus Gittinger <cg@exept.de>
Sat, 20 Aug 2011 13:44:24 +0200
changeset 219 422031ef57dc
parent 218 aa8bbc475236
child 220 7ef561a05e48
added: #version_CVS
MCMcdWriter.st
--- a/MCMcdWriter.st	Sat Aug 20 13:44:19 2011 +0200
+++ b/MCMcdWriter.st	Sat Aug 20 13:44:24 2011 +0200
@@ -18,8 +18,9 @@
 
 writeBaseInfo: aVersionInfo
 	| string |
-	string _ self serializeVersionInfo: aVersionInfo.
+	string := self serializeVersionInfo: aVersionInfo.
 	self addString: string at: 'base'.
+
 !
 
 writeDefinitions: aVersion
@@ -37,8 +38,8 @@
 
 writePatch: aPatch
 	| old new |
-	old _ OrderedCollection new.
-	new _ OrderedCollection new.
+	old := OrderedCollection new.
+	new := OrderedCollection new.
 	aPatch operations do:
 		[:ea |
 		ea isRemoval ifTrue: [old add: ea definition].
@@ -52,5 +53,13 @@
 !MCMcdWriter class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMcdWriter.st,v 1.1 2006-11-22 13:04:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMcdWriter.st,v 1.2 2011-08-20 11:44:24 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCMcdWriter.st,v 1.2 2011-08-20 11:44:24 cg Exp $'
+!
+
+version_SVN
+    ^ '§Id: MCMcdWriter.st 5 2010-08-29 07:30:29Z vranyj1 §'
 ! !