From owner-cvs-user Fri May 19 15:30:32 1995 Return-Path: cvs-user-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id PAA09184 for cvs-user-outgoing; Fri, 19 May 1995 15:30:32 -0700 Received: from sequent.kiae.su (sequent.kiae.su [144.206.136.6]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id PAA09177 ; Fri, 19 May 1995 15:30:21 -0700 Received: by sequent.kiae.su id AA18360 (5.65.kiae-2 ); Sat, 20 May 1995 02:17:13 +0400 Received: by sequent.KIAE.su (UUMAIL/2.0); Sat, 20 May 95 02:17:12 +0400 Received: (from ache@localhost) by astral.msk.su (8.6.8/8.6.6) id CAA02840; Sat, 20 May 1995 02:15:28 +0400 To: "Jordan K. Hubbard" Cc: CVS-commiters@freefall.cdrom.com, cvs-user@freefall.cdrom.com References: <25354.800899281@freefall.cdrom.com> In-Reply-To: <25354.800899281@freefall.cdrom.com>; from "Jordan K. Hubbard" at Fri, 19 May 1995 09:01:21 -0700 Message-Id: Organization: Olahm Ha-Yetzirah Date: Sat, 20 May 1995 02:15:28 +0400 (MSD) X-Mailer: Mail/@ [v2.36 FreeBSD] From: "Andrey A. Chernov, Black Mage" X-Class: Fast Subject: Re: cvs commit: src/release/sysinstall label.c Lines: 37 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Length: 1250 Sender: cvs-user-owner@freebsd.org Precedence: bulk In message <25354.800899281@freefall.cdrom.com> Jordan K. Hubbard writes: >Transition to A_BOLD, print a line of text, transition to A_NORMAL >(after the newline) and then immediately transition to A_REVERSE, >print a line, transition to A_NORMAL. The bold line of text will have >its first world _not_ in bold (even though it makes no sense why) and >the next line will NOT be in A_REVERSE. Jordan, I try following program (not from 2.x console but from remote 1.1.5.1 console due to my location) and it show correct results. So, I have a question: does this example follows your description properly and what you see running it on 2.x console? If you see good results too, please correct you description. If you see bad results, it is syscons bug. #include main() { initscr(); attron(A_BOLD); addstr("word1 line1\n"); attrset(A_NORMAL); attron(A_REVERSE); addstr("word2 line2\n"); attrset(A_NORMAL); refresh(); endwin(); } -- Andrey A. Chernov : And I rest so composedly, /Now, in my bed, ache@astral.msk.su : That any beholder /Might fancy me dead - FidoNet: 2:5020/230.3 : Might start at beholding me, /Thinking me dead. RELCOM Team,FreeBSD Team : E.A.Poe From "For Annie" 1849