racket/collects/mrlib/scribblings/common.rkt
Matthew Flatt 68e005fb2c racket/draw: make-immutable-{color,brush,pen} => make-{color,brush,pen}
Also, use keywords for `make-pen' and `make-brush'.

Adding `make-pen' and `make-color' creates many conflicts among
teaching libraries, such as `2htdp/image'. These are easy to fix
up in the tree, but adding such obvious names to `racket/draw'
may create other compatibility problems, so we might have to reconsider
the names.

In consultation with Asumu.
2012-05-01 21:04:40 -06:00

14 lines
452 B
Racket

#lang scheme/base
(require scribble/manual
(for-label scheme/base
scheme/contract
scheme/class
(except-in scheme/gui/base make-color make-pen)))
(provide (all-from-out scribble/manual)
(for-label (all-from-out scheme/base
scheme/contract
scheme/class
scheme/gui/base)))