From eee0bbdc40cd05e7bd522e2951d506b3a266c945 Mon Sep 17 00:00:00 2001 From: ccQpein Date: Mon, 16 Sep 2024 11:10:55 -0400 Subject: [PATCH] Add alexandria-2 to dependencies download (#66) Add alexandria-2 to dependencies download --- .gitignore | 2 ++ find-dependencies.lisp | 2 +- src/ciel.lisp | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index be303db..adaf10a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ *.fasl +ciel +ciel-core diff --git a/find-dependencies.lisp b/find-dependencies.lisp index 79f7d39..994194b 100755 --- a/find-dependencies.lisp +++ b/find-dependencies.lisp @@ -1,4 +1,4 @@ -#!/usr/bin/sbcl --script +#!/usr/bin/env sbcl --script #| Show CIEL's dependencies. diff --git a/src/ciel.lisp b/src/ciel.lisp index 7eb7715..1c6bb26 100644 --- a/src/ciel.lisp +++ b/src/ciel.lisp @@ -126,7 +126,7 @@ We currently only try this with serapeum. See *deps/serapeum/sequences-hashtable (defparameter *deps/alexandria-2/sequences* '(:subseq*)) -(cl-reexport:reexport-from :alexandria-2 +(cl-reexport:reexport-from :alexandria :include *deps/alexandria-2/sequences*) @@ -397,7 +397,7 @@ We currently only try this with serapeum. See *deps/serapeum/sequences-hashtable (defparameter *current-pprint-indentation* 1 "We use custom indentation instead of the pretty printer, because it doesn't print correctly in the shell (indentations are way too large).") -;TEST +;; TEST (defun pretty-print-hash-table (ht &optional (stream *standard-output*)) "Pretty print hash-table HT to STREAM.