SBCL: Fix ppcre loading.

master
Pierre Neidhardt 2020-09-17 11:11:05 +02:00
parent 0f03c79270
commit 43b0046557
1 changed files with 3 additions and 1 deletions

View File

@ -92,7 +92,9 @@ From: https://gitlab.common-lisp.net/asdf/asdf/issues/10#note_5018."
(result nil))
(do-symbols (s package)
(when (and (eq (symbol-package s) package)
(ppcre:scan regexp (string s)))
(funcall (symbol-function (find-symbol (string 'scan)
(find-package 'ppcre)))
regexp (string s)))
(push s result)))
(eval `(trace ,@result))))