#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 15 May 2019 14:19:15 +0200
changeset 4426 a82374e79e97
parent 4425 f6480b98a1a2
child 4427 e90a39860df5
#DOCUMENTATION by cg class: CVSSourceCodeManager class comment/format in: #revisionLogOf:fromRevision:toRevision:numberOfRevisions:fileName:directory:module:
CVSSourceCodeManager.st
--- a/CVSSourceCodeManager.st	Wed May 15 14:07:31 2019 +0200
+++ b/CVSSourceCodeManager.st	Wed May 15 14:19:15 2019 +0200
@@ -4716,7 +4716,7 @@
 
 revisionLogOf:clsOrNil
     fromRevision:firstRevOrNil toRevision:lastRevOrNil numberOfRevisions:numRevisionsOrNil
-    fileName:classFileName directory:packageDir module:moduleDir
+    fileName:classFileName directory:packageDirOrNil module:moduleDir
 
     "return info about the repository container and
      (part of) the revisionlog as a collection of revision entries.
@@ -4771,10 +4771,10 @@
     [
         |cmd revArg|
 
-        packageDir isEmptyOrNil ifTrue:[
+        packageDirOrNil isEmptyOrNil ifTrue:[
             modulePath := moduleDir
         ] ifFalse:[
-            modulePath :=  moduleDir , '/' , packageDir.
+            modulePath :=  moduleDir , '/' , packageDirOrNil.
         ].
         classFileName isNil ifTrue:[
             fullName :=  modulePath , '/' , (clsOrNil classFilename).