Custom Query (1030 matches)
Results (484 - 486 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #599 | fixed | io encoding in RUN-PROGRAM | ||
| Description |
With "Version 1.3-r12839M (LinuxPPC32)" and Ubuntu 7.10, the following (with-output-to-string
works as expected, while (with-output-to-string
does not (no suggestions are showed). Both worked five years ago on MacOS X, and in shell aspell works correctly. Some investigation showed that the problem is in the encoding RUN-PROGRAM uses for io. CCL is started with -K utf-8 --eval '(setf *default-file-character-encoding* :utf-8)' but it seems it's not enough... |
|||
| #677 | fixed | saving an application hangs | ||
| Description |
CCL 1.5, Windows XP, x86 Given a source file danderoli.lisp, (ccl:save-application "danderoli.cgi" :error-handler :quit :prepend-kernel t)) hangs (danderoli.cgi gets created, but is only 1731 Kb), while (ccl:save-application "dand.cgi" :error-handler :quit :prepend-kernel t)) doesn't. The documentation doesn't seem to mention it. Is it a bug or am I missing something? |
|||
| #998 | worksforme | weird behavior of (read-line) | ||
| Description |
e.g. when I do the following loop, it only read two lines. (Lispworks and CLisp read 3 lines) (loop for i from 1 to 3 do (read-line))
1 2
2 3
NIL
}}
and the following code only reports error in Clozure (in CLisp and Lispworks it is fine):
{{{
? (defun take-input(n)
(let ((s ()))
(dotimes (i n)
(push
(with-input-from-string (s (read-line)) (loop for x = (read s nil :end) until (eq x :end) collect x)) s))
s))
? (take-input 1)
1 2
> Error: Reader error on #<STRING-INPUT-STREAM #x302006AA204D>, near position 1, within ")":
> Unmatched ')' .
}}}
|
|||
