From 341709333bf1ebc055373787ff2307dc936116cc Mon Sep 17 00:00:00 2001 From: Didier Verna Date: Fri, 9 Mar 2012 17:17:58 +0100 Subject: [PATCH] Remove one useless conditional. ChangeLog entries: 2012-03-09 Didier Verna * termio/termio.lisp (stream-line-width): Remove the FBOUNDP check on CLISP/STREAM-LINE-WIDTH which has become useless with the termio module. --- termio/termio.lisp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/termio/termio.lisp b/termio/termio.lisp index 64707c7..0d3993a 100644 --- a/termio/termio.lisp +++ b/termio/termio.lisp @@ -129,8 +129,7 @@ Return two values: (fd-line-width (ext:file-stream-fd stream)) (values (unless (= cols -1) cols) msg)) #+clisp - (when (fboundp 'clisp/stream-line-width) - (clisp/stream-line-width stream))) + (clisp/stream-line-width stream)) ;;; termio.lisp ends here -- 2.11.4.GIT