From owner-cvs-src-old@FreeBSD.ORG Fri Mar 20 14:31:17 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A90A510657A3 for ; Fri, 20 Mar 2009 14:31:17 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 961F28FC2B for ; Fri, 20 Mar 2009 14:31:17 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n2KEVHUK086802 for ; Fri, 20 Mar 2009 14:31:17 GMT (envelope-from ed@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n2KEVHVE086801 for cvs-src-old@freebsd.org; Fri, 20 Mar 2009 14:31:17 GMT (envelope-from ed@repoman.freebsd.org) Message-Id: <200903201431.n2KEVHVE086801@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to ed@repoman.freebsd.org using -f From: Ed Schouten Date: Fri, 20 Mar 2009 14:31:08 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/syscons/teken teken.c teken_subr.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2009 14:31:18 -0000 ed 2009-03-20 14:31:08 UTC FreeBSD src repository Modified files: sys/dev/syscons/teken teken.c teken_subr.h Log: SVN rev 190157 on 2009-03-20 14:31:08Z by ed Just use default behaviour on tabstops when using too many columns. It seems I didn't fix this issue before committing teken to the tree. My initial idea was to somehow add an error mechanism to instruct the video driver author to increase T_NUMCOL when using very big terminals. It turns out we have platforms where we have gigantic consoles on systems like the Apple PowerMac G5, which means we crash there right now. Just ignore tabstops placed beyond column 160. Just force tabs to be placed on each 8 columns. Reported by: nwhitehorn Revision Changes Path 1.9 +0 -2 src/sys/dev/syscons/teken/teken.c 1.8 +6 -3 src/sys/dev/syscons/teken/teken_subr.h