cl-interpol icon indicating copy to clipboard operation
cl-interpol copied to clipboard

Common Lisp surface syntax niceties

Results 4 cl-interpol issues
Sort by recently updated
recently updated
newest added

Hello, I have this macro in my code: ```lisp (defmacro interpol (string) (with-input-from-string (s (prin1-to-string string)) (cl-interpol:interpol-reader s nil nil :recursive-p nil))) ``` So I don't need to use the...

```lisp #?"\xe9\x87\x8f\xe4\xbb\xb7" ``` => ```=> "量价" ``` correct result should be `"量价"` My temp solution is: ```lisp (babel:octets-to-string (make-array 6 :element-type '(unsigned-byte 8) :initial-contents (mapcar #'char-code (coerce #?"\xe9\x87\x8f\xe4\xbb\xb7" 'list))) :encoding...

Would you please consider adding a :description option to your system definition of cl-interpol?

based on system definitions in hunchentoot (includes descriptions) - closes https://github.com/edicl/cl-interpol/issues/1