Skip to content
Snippets Groups Projects
Commit 05e70794 authored by ram's avatar ram
Browse files

If the terminal rows/columns are 0, then return NIL (meaning value unknown.)

parent 5dcc71eb
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/tty-disp-rt.lisp,v 1.1.1.3 1991/03/14 16:25:48 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/tty-disp-rt.lisp,v 1.1.1.4 1991/09/03 16:26:06 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -69,15 +69,17 @@ ...@@ -69,15 +69,17 @@
(mach::with-trap-arg-block mach:sgtty sgtty (mach::with-trap-arg-block mach:sgtty sgtty
(let ((size-win (mach:unix-ioctl fd mach:TIOCGWINSZ (alien-sap winsize))) (let ((size-win (mach:unix-ioctl fd mach:TIOCGWINSZ (alien-sap winsize)))
(speed-win (mach:unix-ioctl fd mach:TIOCGETP (alien-sap sgtty)))) (speed-win (mach:unix-ioctl fd mach:TIOCGETP (alien-sap sgtty))))
(values (flet ((frob (val)
(and size-win (if (and size-win (not (zerop val)))
(alien-access (mach:winsize-ws_row winsize))) val
(and size-win nil)))
(alien-access (mach:winsize-ws_col winsize))) (values
(and speed-win (frob (alien-access (mach:winsize-ws_row winsize)))
(setq *terminal-baud-rate* (frob (alien-access (mach:winsize-ws_col winsize)))
(svref mach:terminal-speeds (and speed-win
(alien-access (mach:sgtty-ospeed sgtty)))))))))) (setq *terminal-baud-rate*
(svref mach:terminal-speeds
(alien-access (mach:sgtty-ospeed sgtty)))))))))))
;;;; Output routines and buffering. ;;;; Output routines and buffering.
......
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