-
Notifications
You must be signed in to change notification settings - Fork 0
/
trivial-escapes.asd
38 lines (36 loc) · 1.37 KB
/
trivial-escapes.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
;; THE LICENSE THAT'S NOT A LICENSE
;; Version 1.618, January 2017
;;
;; Redistribution of this LICENSE is permitted, either in unmodified
;; form, with no further qualifications, or in modified form,
;; under the condition that the name of the license is changed.
;;
;; THE LICENSE THAT'S NOT A LICENSE
;; TERMS AND CONDITIONS FOR USAGE, COPYING, DISTRIBUTION, AND MODIFICATION
;; OF PROVIDED SOFTWARE
;;
;;
;; 1. Do WHATEVER YOU WANT with the provided software.
;; 2. Credit is appreciated, but not required.
;;
;;
;; This software is provided with NO WARRANTY, implied or otherwise.
;;;;
;;;; TRIVIAL-ESCAPES
;;;; William Yao, <[email protected]>
;;;; Copyright (c) 2017
;;;;
(defsystem #:trivial-escapes
:author "William Yao <[email protected]>"
:maintainer "William Yao <[email protected]>"
:description "C-style escape directives for Common Lisp."
:version "1.2.0"
:license "Public Domain"
:serial t
:depends-on ("named-readtables")
:components ((:file "packages")
;; (:file "prompt-value")
(:file "to-char")
(:file "escaping-pains")
(:file "readtable"))
:in-order-to ((test-op (test-op "trivial-escapes-test"))))