Commit 00c6a053236f3cd1530a93d635db714f0eb17eb0

Thomas de Grivel 2018-06-16T14:02:23

fix ext

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/mime.lisp b/mime.lisp
index e2e7576..9020615 100644
--- a/mime.lisp
+++ b/mime.lisp
@@ -10,7 +10,7 @@
 
 (defgeneric ext (x))
 
-(defmethod ext ((x string))
+(defmethod ext ((x simple-string))
   (cond ((string= "" x))
         ((char= #\. (char x 0))
          (let ((sym (intern x :file-extensions)))