Skip to content
Snippets Groups Projects
Commit ba5c0ad0 authored by wlott's avatar wlott
Browse files

Missed a place where the old aliens stuff was being used.

parent bb1bbf60
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/rompsite.lisp,v 1.1.1.17 1992/02/14 23:51:04 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/rompsite.lisp,v 1.1.1.18 1992/02/15 01:04:42 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -908,12 +908,11 @@ ...@@ -908,12 +908,11 @@
(incf i)))) (incf i))))
(defun editor-tty-listen (stream) (defun editor-tty-listen (stream)
(with-stack-alien (nc (signed-byte 32) 32) (alien:with-alien (nc c-call:int)
(and (unix:unix-ioctl (tty-editor-input-fd stream) (and (unix:unix-ioctl (tty-editor-input-fd stream)
unix::FIONREAD unix::FIONREAD
(alien-sap (alien-value nc))) (alien:alien-sap (alien:addr nc)))
(> (alien-access (alien-value nc)) 0)))) (> nc 0))))
(defvar old-flags) (defvar old-flags)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment