diff options
-rw-r--r-- | ice-9/ChangeLog | 10 | ||||
-rw-r--r-- | ice-9/emacs.scm | 4 | ||||
-rw-r--r-- | ice-9/gtcl.scm | 0 | ||||
-rw-r--r-- | ice-9/gwish.scm | 0 | ||||
-rw-r--r-- | ice-9/nonblocking.scm | 0 |
5 files changed, 11 insertions, 3 deletions
diff --git a/ice-9/ChangeLog b/ice-9/ChangeLog index cb8da9e98..e0347bfe8 100644 --- a/ice-9/ChangeLog +++ b/ice-9/ChangeLog @@ -1,3 +1,13 @@ +1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se> + + * nonblocking.scm: Removed. libguile is now inherently + nonblocking through the use of scm_internal_select. + + * emacs.scm: Removed use of nonblocking.scm. + + * gwish.scm, gtcl.scm: Removed. tcltk.scm has made these + obsolete. + 1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se> * runq.scm (runq-control): Corrected spelling of enqueue!. diff --git a/ice-9/emacs.scm b/ice-9/emacs.scm index 76867dc34..28bb2555e 100644 --- a/ice-9/emacs.scm +++ b/ice-9/emacs.scm @@ -32,7 +32,6 @@ (define-module (ice-9 emacs) :use-module (ice-9 debug) :use-module (ice-9 threads) - :use-module (ice-9 nonblocking) :use-module (ice-9 session)) (define emacs-escape-character #\sub) @@ -92,8 +91,7 @@ (lambda () (close-port orig-port))) "r"))) -(set! repl-input-port (make-emacs-load-port (current-input-port))) -(set-current-input-port repl-input-port) +(set-current-input-port (make-emacs-load-port (current-input-port))) (define (result-to-emacs exp) (sending-result) diff --git a/ice-9/gtcl.scm b/ice-9/gtcl.scm deleted file mode 100644 index e69de29bb..000000000 --- a/ice-9/gtcl.scm +++ /dev/null diff --git a/ice-9/gwish.scm b/ice-9/gwish.scm deleted file mode 100644 index e69de29bb..000000000 --- a/ice-9/gwish.scm +++ /dev/null diff --git a/ice-9/nonblocking.scm b/ice-9/nonblocking.scm deleted file mode 100644 index e69de29bb..000000000 --- a/ice-9/nonblocking.scm +++ /dev/null |