Results 9 issues of Elias Pipping

It is common practice to have multiple entries in an alist with the same key. E.g. [CLtL2](https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node153.html) explicitly touts this as a feature: > Moreover, because the searching function assoc...

Hi, I was looking at how different projects on quicklisp use uiop:run-program and came across this snippet in cl-coveralls: ```common-lisp (with-output-to-string (s) (uiop:run-program `("git" "--git-dir" ,(namestring (merge-pathnames #P".git" (pathname project-dir)))...

Hi, I was looking at how different projects on quicklisp use uiop:run-program and came across this snippet in woo: ```common-lisp (with-output-to-string (s) (uiop:run-program "uname -r" :output s :ignore-error-status t)))) ```...

Hi, (this doesn't really belong in a bug report but I'd still like to take a second to say that what you've done here is fabulous, amazing, and incredibly helpful....

Please consider the following example: ```c++ #include "muparserx/mpParser.h" using namespace mup; int main() { ParserX p(pckALL_NON_COMPLEX | pckMATRIX); p.EnableAutoCreateVar(true); try { p.SetExpr("a = zeros(3,3)"); p.Eval(); var_maptype vmap = p.GetVar(); for...

Consider the following "input" with line numbers. ``` 1 xxxxxx 2 xxXXxx 3 xxxxxx_bar 4 xxxxxx-bar 5 axxxxxxb ``` I observe the following. (a) `smartscan-symbol-go-forward` and `smartscan-symbol-go-backward` cut these lines...

Hello, I'm running bongo inside an emacs instance with nothing else running. Playing a list of ~15 titles with bongo brings the CPU usage of that emacs instance to around...

This happens by default on at least CCL and CMU CL; `:follow-symlinks t` may thus not be a great default given how common broken symlinks are. Moreover, `:follow-symlinks nil` only...

Hi, I was looking at how different projects on quicklisp use `uiop:run-program` and came across the snippet ```common-lisp (defun execute-in-directory (cmd) (uiop:run-program (format nil "cd ~S; ~A" (namestring +system-pathname+) cmd)))...