diff options
author | 2011-10-09 23:25:33 +0000 | |
---|---|---|
committer | 2011-10-09 23:25:33 +0000 | |
commit | d56eb9fa5ecd746111bf888bf73a9af897083d46 (patch) | |
tree | 7ee0131674911a6d03e9cf65afeafb4bf57bcca9 /dev-lang/gnu-smalltalk/files | |
parent | Version bump. (diff) | |
download | historical-d56eb9fa5ecd746111bf888bf73a9af897083d46.tar.gz historical-d56eb9fa5ecd746111bf888bf73a9af897083d46.tar.bz2 historical-d56eb9fa5ecd746111bf888bf73a9af897083d46.zip |
Version update. Fix: bug#364731 , bug#364733, bug#381609
Package-Manager: portage-2.1.10.24/cvs/Linux x86_64
Diffstat (limited to 'dev-lang/gnu-smalltalk/files')
-rw-r--r-- | dev-lang/gnu-smalltalk/files/SequenceableCollection-size-3.2.4.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev-lang/gnu-smalltalk/files/SequenceableCollection-size-3.2.4.patch b/dev-lang/gnu-smalltalk/files/SequenceableCollection-size-3.2.4.patch new file mode 100644 index 000000000000..1842e4620f9d --- /dev/null +++ b/dev-lang/gnu-smalltalk/files/SequenceableCollection-size-3.2.4.patch @@ -0,0 +1,23 @@ +--- a/kernel/SeqCollect.st ++++ b/kernel/SeqCollect.st +@@ -1104,9 +1104,16 @@ some access and manipulation methods.'> + ^count + ] + ++ size [ ++ "Answer a dummy size of 0, so that SequenceableCollection>>#do: works." ++ ++ <category: 'testing collections'> ++ ^0 ++ ] ++ + growSize [ + <category: 'private methods'> +- ^self size ++ ^(self size max: 8) + ] + + swap: anIndex with: anotherIndex [ +-- +1.7.2.5 + |