メインコンテンツまでスキップ
バージョン:25.2

defaultListInsertionMode

  • global property
  • controls the default value of the listInsertionMode local property at the beginning of each handler
  • The listInsertionMode local property, and the corresponding defaultListInsertionMode global property, can be set to "nested" or "item by item" to set the standard behavior within the local handler, or globally for all handlers, respectively:
         put (1,2,3) into aList
set the listInsertionMode to "nested"
insert (4,5) after aList -- (1,2,3,(4,5))