diff options
| author | 2025-10-19 07:26:56 +0300 | |
|---|---|---|
| committer | 2025-10-19 07:26:56 +0300 | |
| commit | 3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6 (patch) | |
| tree | b222f24d5e35824a562aef4f4974de9f88cf9b59 /src/strings.lisp | |
| parent | Make config be a global special variable (diff) | |
| download | ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.tar.gz ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.tar.xz ukkoclot-3b2af0dccba0b51d1d43bc950cf1b2a9f8fecfa6.zip | |
Migrate packages from :ukkoclot to :ukkoclot/src
Diffstat (limited to 'src/strings.lisp')
| -rw-r--r-- | src/strings.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strings.lisp b/src/strings.lisp index eae8ec0..04a20de 100644 --- a/src/strings.lisp +++ b/src/strings.lisp | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ;; SPDX-License-Identifier: EUPL-1.2 | 1 | ;; SPDX-License-Identifier: EUPL-1.2 |
| 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> | 2 | ;; SPDX-FileCopyrightText: 2025 Uko Kokņevičs <perkontevs@gmail.com> |
| 3 | (defpackage :ukkoclot/strings | 3 | (defpackage :ukkoclot/src/strings |
| 4 | (:documentation "String-oriented utilities.") | 4 | (:documentation "String-oriented utilities.") |
| 5 | (:use :c2cl :iterate) | 5 | (:use :c2cl :iterate) |
| 6 | (:import-from :cl-unicode :general-category) | 6 | (:import-from :cl-unicode :general-category) |
| @@ -8,7 +8,7 @@ | |||
| 8 | :escape-xml | 8 | :escape-xml |
| 9 | :is-tg-whitespace | 9 | :is-tg-whitespace |
| 10 | :is-tg-whitespace-str)) | 10 | :is-tg-whitespace-str)) |
| 11 | (in-package :ukkoclot/strings) | 11 | (in-package :ukkoclot/src/strings) |
| 12 | 12 | ||
| 13 | ;; These are very inefficient but I don't care until I profile | 13 | ;; These are very inefficient but I don't care until I profile |
| 14 | 14 | ||