[squeak-dev] The Inbox: System-ct.1265.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 6 16:49:14 UTC 2021


A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-ct.1265.mcz

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

Name: System-ct.1265
Author: ct
Time: 6 December 2021, 5:49:08.242522 pm
UUID: ee660bd8-5ddd-a94c-956f-540d59d42492
Ancestors: System-mt.1264

Proposal: Add "fixUpMorphErrors" to the "Do" menu.

I did not want to run #initializeCommonRequestStrings in the postscript because it would revert all of your existing adjustments to the list. The change will become visible after cleaning up the image, e.g., via ReleaseBuilder.

Supersedes System-ct.1135.

=============== Diff against System-mt.1264 ===============

Item was added:
+ ----- Method: Utilities class>>fixUpMorphErrors (in category 'miscellaneous') -----
+ fixUpMorphErrors
+ 
+ 	Project current world allMorphsDo: [:m |
+ 		m resumeAfterDrawError.
+ 		m resumeAfterLayoutError.
+ 		m wantsSteps ifTrue: [m resumeAfterStepError]]!

Item was changed:
  ----- Method: Utilities class>>initializeCommonRequestStrings (in category 'common requests') -----
  initializeCommonRequestStrings
  	"Initialize the common request strings, a directly-editable list of expressions that can be evaluated from the 'do...' menu."
  
  	CommonRequestStrings := StringHolder new contents: 
  'Utilities emergencyCollapse.
  Utilities closeAllDebuggers.
  RecentMessages default revertMostRecent.
  -
  MCFileBasedRepository flushAllCaches
  -
  Sensor keyboard.
  ParagraphEditor abandonChangeText.
  Cursor normal show.
+ Utilities fixUpMorphErrors.
  -
  CommandHistory resetAllHistory.
  Project allInstancesDo: [:p | p displayDepth: 16].
  ScriptingSystem inspectFormDictionary.
  Form fromUser bitEdit.
  Display border: (0 at 0 extent: 640 at 480) width: 2.
  -
  Undeclared inspect.
  Undeclared removeUnreferencedKeys; inspect.
  Transcript clear.
  GIFReadWriter grabScreenAndSaveOnDisk.
  FrameRateMorph new openInHand.
  -
  Utilities reconstructTextWindowsFromFileNamed: ''TW''.
  Utilities storeTextWindowContentsToFileNamed: ''TW''.
  ChangeSet removeEmptyUnnamedChangeSets.
  ChangesOrganizer reorderChangeSets.
  -
  ActiveWorld installVectorVocabulary.
  ActiveWorld abandonVocabularyPreference.'
  
  "Utilities initializeCommonRequestStrings"!



More information about the Squeak-dev mailing list