From 1bf454ad077ffbb83548dc0d6fab8250c4adfde8 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Wed, 18 Sep 2002 14:57:23 +0000 Subject: [PATCH] ... original commit: 4495ad4fc694a0c616fd6e3083a3c78de20f0a69 --- collects/framework/framework.ss | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/collects/framework/framework.ss b/collects/framework/framework.ss index 7a6c28ae..b10c8346 100644 --- a/collects/framework/framework.ss +++ b/collects/framework/framework.ss @@ -255,21 +255,22 @@ "Registers \\var{cb}. Next time the" "user clicks the OK button the preferences" "dialog, all of the \\var{cb} functions" - "are called. If any of them return \\scm{\\#f}," - "the dialog is not closed." - "" - "See also" - "@flink preferences:add-on-close-dialog-callback") + "are called, assuming that each of the callbacks" + "passed to" + "@flink preferences:add-on-close-dialog-callback" + "succeed.") (preferences:add-can-close-dialog-callback ((-> boolean?) . -> . void?) (cb) "Registers \\var{cb}. Next time the" "user clicks the OK button the preferences" "dialog, all of the \\var{cb} functions" - "are called, assuming that each of the callbacks" - "passed to" - "@flink preferences:add-on-close-dialog-callback" - "succeed.") + "are called. If any of them return \\scm{\\#f}," + "the dialog is not closed." + "" + "See also" + "@flink preferences:add-on-close-dialog-callback %" + ".") (autosave:register ((and/f (is-a?/c autosave:autosavable<%>)