gui/collects/framework/private/application.ss
Robby Findler 6390931c40 ...
original commit: 382fab8691402cba8e3182ed2ae23ddbac4dfe8d
2001-02-24 04:54:02 +00:00

18 lines
395 B
Scheme

(module application mzscheme
(require (lib "unitsig.ss")
"sig.ss"
(lib "mred-sig.ss" "mred"))
(provide application@)
(define application@
(unit/sig framework:application^
(import)
(define current-app-name (make-parameter
"MrEd"
(lambda (x)
(unless (string? x)
(error 'current-app-name
"the app name must be a string"))
x))))))