Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!ucbvax!tut.cis.ohio-state.edu!unreplyable!garbage From: bernou@LELAND.STANFORD.EDU (Bernard Salanie) Newsgroups: comp.lang.lisp.x Subject: Compiling xlisp on UNIX Message-ID: <9105170825.AA21664@leland.Stanford.EDU> Date: 17 May 91 08:25:54 GMT Sender: daemon@tut.cis.ohio-state.edu Lines: 15 I also had difficulties compiling xlisp on my UNIX system (a NeXTstation, whose C compiler is derived from gcc). The program would compile, but it would dump core every time I tried to evaluate an expression. In my case, the workaround was to change two lines in the function read_keybd in unixstuf.c : changed cher buf[1] to char buf[100] changed sizeof(buf) to sizeof(char) It works for me... Bernard Salanie