>>>>> "fb" == Frank Berthold <[EMAIL PROTECTED]> writes:
fb> I'm using TightVNC from a windows 2000 machine to work on a fb> FreeBSD 4.7 system on an intel platform. At present I'm using fb> CMUCL 18d. I've been attempting to use hemlock without a great fb> deal of success and am hoping that someone here may have an idea fb> of what I'm doing wrong, here is the log from my latest attempt. fb> Connection to server broken: Hit EOF while reading packet fb> Asynchronous NAME-ERROR in request 1 (last request was 2) Code 45.0 [OpenFont] the problem seems to due to Hemlock trying to open a font that you don't have installed. (NAME-ERROR is being signaled by CLX, and it's telling you that an OpenFont call failed on the X11 server; the rest of the error message is the Motif debugger failing noisily). Hemlock under X defaults to trying to use X11 fonts named "*-courier-medium-r-normal--*-120-*" "*-courier-medium-o-normal--*-120-*" "*-courier-bold-r-normal--*-120-*" and will fail if the X11 server doesn't have these available. You can change the default fonts from your Hemlock initialization file, for example ,---- $HOME/.hemlock-init.lisp | (in-package :hemlock) | | (setv default-font "fixed") | (setv open-paren-highlighting-font "fixed") | (setv active-region-highlighting-font "fixed") `---- -- Eric Marsden <URL:http://www.laas.fr/~emarsden/>
