> Ever since the libtermcap / libncurses consolidation, change emacs has
> problems positioning the cursor and properly updating the screen for
> character-only devices like the console. It also affects the display
> in an xterm in non-X mode, i.e., when DISPLAY is *not* set.
>
> This is emacs 20.4, by the way on current as of yesterday. I've tried
> emacs from packages as well as a freshly built one from the ports and
> both exhibit the problem.
>
> Note that emacs works fine when it brings up is own window due to
> DISPLAY being set.
>
> Has anyone else seen this and already have a fix or know for sure
> whether this is an emacs bug or a FreeBSD bug?
I filed a bug report for this. I fixed it in Emacs with the following
patch. I think it's a FreeBSD bug, though.
-Peter- [EMAIL PROTECTED]
--- /tmp/tparam.c Fri Oct 29 12:27:03 1999
+++ tparam.c Thu Oct 7 23:07:24 1999
@@ -290,6 +290,9 @@
case 'D': /* %D means weird Delta Data transformation. */
argp[0] -= 2 * (tem % 16);
break;
+ case 'p': /* from terminfo */
+ p++;
+ break;
}
}
else
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message