[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

clisp with comint



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.