The Trunk: System-mt.1517.mcz

[email protected] Sat, 27 Jun 2026 11:22:17 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1517.mcz

==================== Summary ====================

Name: System-mt.1517
Author: mt
Time: 27 June 2026, 1:22:16.042394 pm
UUID: 8d497998-94ae-1249-b048-a1a52509d8f3
Ancestors: System-ct.1516

Fixes awkward text layout in a dialog I stumbled upon when executing all tests with the recent VM on macOS.

=============== Diff against System-ct.1516 ===============

Item was changed:
  ----- Method: SmalltalkImage>>okayToProceedEvenIfSpaceIsLow (in category 'memory space') -----
  okayToProceedEvenIfSpaceIsLow
  	"Return true if either there is enough memory to do so safely or if the user gives permission after being given fair warning."
  
  	self garbageCollectMost > self lowSpaceThreshold ifTrue: [^ true].  "quick"
  	self garbageCollect > self lowSpaceThreshold ifTrue: [^ true].  "work harder"
  
+ 	^ self confirm: 'WARNING: There is not enough space to start the low-space watcher.\\If you proceed, you will not be warned again, and the system may run out of memory and crash.\\If you do proceed, you can start the low-space notifier when more space becomes available simply by opening and then closing a debugger, e.g., by hitting Cmd-period.\\Do you want to proceed?' translated withCRs
- 	^ self confirm:
- 'WARNING: There is not enough space to start the low space watcher.
- If you proceed, you will not be warned again, and the system may
- run out of memory and crash. If you do proceed, you can start the
- low space notifier when more space becomes available simply by
- opening and then closing a debugger (e.g., by hitting Cmd-period.)
- Do you want to proceed?'
  !

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]