[26533] in Athena Bugs
Re: owl formatting problems 9.4
daemon@ATHENA.MIT.EDU (James M. Kretchmar)
Thu Aug 25 21:57:14 2005
Date: Thu, 25 Aug 2005 21:56:32 -0400
From: "James M. Kretchmar" <kretch@mit.edu>
To: Greg Hudson <ghudson@mit.edu>
Message-ID: <20050826015632.GA4837@mit.edu>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <Pine.LNX.4.58L.0508251235300.6313@ethanhunt.csail.mit.edu>
X-Spam-Score: 1.041
X-Spam-Level: * (1.041)
X-Spam-Flag: NO
cc: bug-ktools@mit.edu
cc: bugs@mit.edu
cc: Ken T Takusagawa <kenta@mit.edu>
Errors-To: bugs-bounces@mit.edu
FTR, Owl does some amount of TERMINFO clobbering, though it hasn't
changed in probably more than a year.
configure.in:
AC_CHECK_FILE(/usr/share/terminfo, AC_DEFINE(TERMINFO, "/usr/share/terminfo", [Have terminfo]),
AC_CHECK_FILE(/usr/share/lib/terminfo, AC_DEFINE(TERMINFO, "/usr/share/lib/terminfo", [Have terminfo]),
AC_MSG_ERROR(No terminfo found for this system)))
owl.c:
if (!getenv("TERMINFO")) {
sprintf(buff, "TERMINFO=%s", TERMINFO);
putenv(buff);
owl_function_debugmsg("startup: setting TERMINFO to %s", TERMINFO);
} else {
owl_function_debugmsg("startup: leaving TERMINFO as %s from envrionment", getenv("TERMINFO"));
}
kretch
On Thu, Aug 25, 2005 at 12:36:20PM -0400, Ken T Takusagawa wrote:
> No. I don't think so. The problem is also replicable as
> sipb0.
>
> --ken
>
> On Thu, 25 Aug 2005, Greg Hudson wrote:
>
> > On Thu, 2005-08-25 at 12:11 -0400, Ken T Takusagawa wrote:
> > > I've been having weird formatting problems with the zephyr
> > > client owl and gnome-terminal under athena 9.4 (linux).
> > > Stuff gets written on top of old zephyrs, and the display
> > > gets all interleaved and messed up especially when
> > > scrolling.
> >
> > Do you set the value of TERM or any other terminfo-related variables in
> > your dotfiles?
> >
> >