[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
clisp with comint
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
- Subject: clisp with comint
- From: kuroda@skydog.msi.co.jp (Hisao Kuroda)
- Date: Wed, 19 Jan 94 15:46:08 +0900
Hello.
I now try to use CLISP with emacs(comint). But there's one problem.
When I send string to comint like,
(process-send-string "*clisp*" "1\n2\n")
then, CLISP answers just like below,
> 1
>
but my expectation is,
> 1
> 2
>
Why CLISP ignore the string "2\n"?
Can anyone tell me why this happen, and how can I fix this.
thank you.