Pascal J. Bourguignon
Pascal J. Bourguignon
Ok. Thank you for the answer. Inded, when passing a (vector octet) it works, (vector T) are expected to contain only characters. I find it regretable that libraries impose such...
A small sondage seems to indicate that clisp interpretation is prefered.
``` [6]> (quicklisp-quickstart:install :proxy "http://bourguignonp:[email protected]:3128/") ; Fetching # ; 0.82KB ================================================== 838 bytes in 0.02 seconds (40.40KB/sec) ; Fetching # ; 250.00KB ================================================== 256,000 bytes in 0.03 seconds (9650.27KB/sec) ;...
For some reason, my debug-on-error was set to true, not to t. Perhaps only t is ignored from call-interactive, but other true values are not? I should reboot my emacs,...
We have to be careful with reader macros in the protocol between slime and swank. **ccl** has a few additional dispatching reader macros on the default `*readtable*`. ``` 30: (common-lisp:read-from-string...
Here are better logs; I changed read-form in swank `rpc.lisp`: ``` (defun read-form (string package) (with-standard-io-syntax (let ((*package* package)) (if *validate-input* (validating-read string) (handler-case (read-from-string string) (error (err) (format *terminal-io*...