Make xrepl the default repl if it is installed

This commit is contained in:
Leif Andersen 2016-07-19 13:47:31 -04:00
parent 046f3eef37
commit b1adf65fd0

View File

@ -12,3 +12,7 @@
(provide (all-from-out racket
racket/enter
racket/help))
;; Set the default replt to XREPL
(with-handlers ([exn:fail? void])
(dynamic-require 'xrepl #f))