scheme.rkt
1 #lang racket/base 2 3 ;; these are the names that used to be a part 4 ;; of the framework with the `scheme:' prefix 5 ;; and now are primarily used with the `racket:' 6 ;; prefix. This list is used to build documentation 7 ;; and renaming exports 8 9 (provide racket:ids) 10 (define racket:ids 11 '(text<%> 12 text-mixin 13 text% 14 15 text-mode<%> 16 text-mode-mixin 17 text-mode% 18 19 set-mode-mixin 20 21 sexp-snip% 22 sexp-snip<%> 23 get-wordbreak-map 24 init-wordbreak-map 25 get-keymap 26 setup-keymap 27 add-preferences-panel 28 add-coloring-preferences-panel 29 30 get-color-prefs-table 31 get-white-on-black-color-prefs-table 32 short-sym->pref-name 33 short-sym->style-name 34 35 text-balanced?))