changing wording of kill/break in menus
svn: r11046
This commit is contained in:
parent
a95c83d041
commit
0f9964e875
|
@ -3182,17 +3182,17 @@ module browser threading seems wrong.
|
||||||
#\t
|
#\t
|
||||||
(string-constant execute-menu-item-help-string)))
|
(string-constant execute-menu-item-help-string)))
|
||||||
(make-object menu:can-restore-menu-item%
|
(make-object menu:can-restore-menu-item%
|
||||||
(string-constant break-menu-item-label)
|
(string-constant ask-quit-menu-item-label)
|
||||||
scheme-menu
|
scheme-menu
|
||||||
(λ (_1 _2) (send current-tab break-callback))
|
(λ (_1 _2) (send current-tab break-callback))
|
||||||
#\b
|
#\b
|
||||||
(string-constant break-menu-item-help-string))
|
(string-constant ask-quit-menu-item-help-string))
|
||||||
(make-object menu:can-restore-menu-item%
|
(make-object menu:can-restore-menu-item%
|
||||||
(string-constant kill-menu-item-label)
|
(string-constant force-quit-menu-item-label)
|
||||||
scheme-menu
|
scheme-menu
|
||||||
(λ (_1 _2) (send interactions-text kill-evaluation))
|
(λ (_1 _2) (send interactions-text kill-evaluation))
|
||||||
#\k
|
#\k
|
||||||
(string-constant kill-menu-item-help-string))
|
(string-constant force-quit-menu-item-help-string))
|
||||||
(when (custodian-memory-accounting-available?)
|
(when (custodian-memory-accounting-available?)
|
||||||
(new menu-item%
|
(new menu-item%
|
||||||
[label (string-constant limit-memory-menu-item-label)]
|
[label (string-constant limit-memory-menu-item-label)]
|
||||||
|
|
|
@ -847,10 +847,10 @@ please adhere to these guidelines:
|
||||||
(scheme-menu-name "S&cheme")
|
(scheme-menu-name "S&cheme")
|
||||||
(execute-menu-item-label "Run")
|
(execute-menu-item-label "Run")
|
||||||
(execute-menu-item-help-string "Restart the program in the definitions window")
|
(execute-menu-item-help-string "Restart the program in the definitions window")
|
||||||
(break-menu-item-label "Stop")
|
(ask-quit-menu-item-label "Ask the program to quit")
|
||||||
(break-menu-item-help-string "Break the current evaluation")
|
(ask-quit-menu-item-help-string "Uses break-thread to stop the primary thread of the current evaluation")
|
||||||
(kill-menu-item-label "Kill")
|
(force-quit-menu-item-label "Force the program to quit")
|
||||||
(kill-menu-item-help-string "Kill the current evaluation")
|
(force-quit-menu-item-help-string "Uses custodian-shutdown-all to abort the current evaluation")
|
||||||
(limit-memory-menu-item-label "Limit memory...")
|
(limit-memory-menu-item-label "Limit memory...")
|
||||||
(limit-memory-msg-1 "The limit will take effect the next time the program")
|
(limit-memory-msg-1 "The limit will take effect the next time the program")
|
||||||
(limit-memory-msg-2 "is Run, and it must be at least 100 megabytes.")
|
(limit-memory-msg-2 "is Run, and it must be at least 100 megabytes.")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user