From owner-freebsd-stable@FreeBSD.ORG Tue Dec 13 19:34:49 2011 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC10F106566B for ; Tue, 13 Dec 2011 19:34:49 +0000 (UTC) (envelope-from minimarmot@gmail.com) Received: from mail-gx0-f182.google.com (mail-gx0-f182.google.com [209.85.161.182]) by mx1.freebsd.org (Postfix) with ESMTP id 6C93D8FC1A for ; Tue, 13 Dec 2011 19:34:49 +0000 (UTC) Received: by ggnp1 with SMTP id p1so14208ggn.13 for ; Tue, 13 Dec 2011 11:34:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=qv2hMCnHLv4OWT/1XEHEvXIxXn6D5sQoOqoLL6X952Y=; b=g8L2khxMlP9yGo62O+YjPd1uUIETeq0xjFugXhyBOjbq0mtDKShQKxONR8nxLze8O8 9fCe0ER9VsKuCnHtThGz9KnYPO8E+/O8ka482UtzFkkHPR1f1ph0AZ+z6lyS+XSHoll1 h4qFdyUx6ZmgpEp06BP6qm+oAwkNvN8ki37IY= MIME-Version: 1.0 Received: by 10.182.222.106 with SMTP id ql10mr4579433obc.53.1323804888676; Tue, 13 Dec 2011 11:34:48 -0800 (PST) Received: by 10.182.50.169 with HTTP; Tue, 13 Dec 2011 11:34:48 -0800 (PST) In-Reply-To: <201112120455.VAA03028@lariat.net> References: <201112090913.CAA03333@lariat.net> <201112120455.VAA03028@lariat.net> Date: Tue, 13 Dec 2011 14:34:48 -0500 Message-ID: From: Ben Kaduk To: Brett Glass , Ed Schouten Content-Type: text/plain; charset=ISO-8859-1 Cc: stable@freebsd.org Subject: Re: Two problems still present in RC3 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2011 19:34:49 -0000 On 12/11/11, Brett Glass wrote: > At 11:36 AM 12/11/2011, Ben Kaduk wrote: > >>Did you take the change to /etc/ttys going from cons25 to xterm 'type'? > > I didn't have to change it; it was that way when the OS was installed. > You were sending to -stable, so I wasn't sure. Thanks for confirming. > Problem seems to be that the behavior (specifically, reverse video on the > 25th line) doesn't quite match the xterm termcap entry. If I remember correctly, your original message mentioned seeing this issue in emacs; have you tried reproducing it in a simpler test case? Maybe something like: (for i in $(jot 25); do echo; tput mr; echo -n "reverse"; tput me; echo -n " regular"; done) && sleep 10000 That would presumably help narrow down the issue. -Ben Kaduk