-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.lisp
41 lines (37 loc) · 1.33 KB
/
packages.lisp
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
39
40
41
;; 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
;;;;
(defpackage #:trivial-escapes
(:nicknames #:trivesc)
(:use #:cl)
(:shadow #:readtable
#:readtable-mixin
#:dq-readtable
#:dq-readtable-mixin)
(:export #:readtable
#:readtable-mixin
#:dq-readtable
#:dq-readtable-mixin
#:prompt-value
#:to-char
#:no-such-char-error
#:code))