svn: r11723

original commit: 5566ec2ef25f631a6b3349f93656df48d199246a
This commit is contained in:
Robby Findler 2008-09-13 13:22:22 +00:00
parent 5d4394a043
commit 8d4562506a

View File

@ -32,12 +32,6 @@
(define bm (make-object bitmap% semicolon-bitmap-path))
(define (editor-keymap-mixin %)
(class %
(define/override (get-keymaps)
(cons (keymap:get-file) (super get-keymaps)))
(super-instantiate ())))
(define scheme+copy-self% #f)
(define (get-scheme+copy-self%)
(unless scheme+copy-self%
@ -48,7 +42,9 @@
(let ([ed (new scheme+copy-self%)])
(copy-self-to ed)
ed))
(super-new))))
(super-new)
(inherit set-max-undo-history)
(set-max-undo-history 'forever))))
scheme+copy-self%)
(define -snip%