mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-28 16:00:22 +02:00
* 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.
This commit is contained in:
parent
9dca3959bd
commit
3ede541d15
5 changed files with 11 additions and 3 deletions
|
@ -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!.
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue