vindarel

Results 591 comments of vindarel

> semi-stable? It works for what it does, indeed. There's an active fork here: https://github.com/digikar99/cl-repl/releases @digikar99 just added (like, last week) two great features: - multi-line input - binary releases: ...

What do you guys think of hosting the fork on the organization https://github.com/lisp-maintainers/ ? I created it but that doesn't mean I maintain all projects. Instead, I will give push...

@daninus14 I can't find it either :S BTW, and consequently, it could be worth not closing this issue ? So people who come to this repository and have a look...

yeah… those issues are not fun. My "fix" would be to ensure we enter Legit in Emacs mode or vi insert mode, so we don't have the conflicts.

output: ``` mmap: wanted 98893824 bytes at 0x1000000000, actually mapped at 0x7f5601400000 Dump of /proc/self/maps: 00400000-0040c000 r--p 00000000 08:04 131736 /usr/bin/sbcl […] 7f5607400000-7f56074ad000 r--p 00000000 08:04 138232 /usr/lib64/libcrypto.so.3.0.9 7f560795d000-7f560797b000 r--p...

Hi, are you on master? You normally don't need any jpeg-turbo library anymore to build CIEL. It was required for nodgui, which we removed (until we perhaps add nodgui/lite).

emphasis on "with metaclass provided". (maybe can you edit the issue title?)

excellent, thanks, it looks good, though I'll take more time to test in the wild, because merging bad type declarations can be very annoying (and imagine if Quicklisp releases in-between...

hey btw I have compilation warnings "deleting unreachable code" for the `pad-*` functions: ``` ; in: DEFUN PAD-LEFT ; (STR:PAD STR::LEN STR::S :PAD-SIDE :LEFT :PAD-CHAR STR::PAD-CHAR) ; --> BLOCK LET...

I would do this: ```lisp (declaim (inline pad-left)) (defun pad-left (%len %s &key (%pad-char *pad-char*)) ;; %len (pad %len %s :pad-side :left :pad-char %pad-char)) ;; same for pad-right ``` or...