git.fiddlerwoaroof.com
Browse code

chore: fewer double colons

Edward Langley authored on 08/11/2023 11:26:04
Showing 2 changed files
... ...
@@ -14,11 +14,9 @@
14 14
 (defpackage :fwoar.cl-git.pack
15 15
   (:use :cl)
16 16
   (:export #:pack #:pack-file #:index-file #:idx-toc
17
-           #:with-pack-streams
18
-           #:seek-to-object-in-pack
19
-           #:packed-ref
20
-           #:packed-ref-pack
21
-           #:packed-ref-offset))
17
+           #:with-pack-streams #:seek-to-object-in-pack #:packed-ref
18
+           #:packed-ref-pack #:packed-ref-offset #:extract-object #:git-ref
19
+           #:loose-ref))
22 20
 
23 21
 (defpackage :fwoar.cl-git
24 22
   (:use :cl :fwoar.cl-git.protocol)
... ...
@@ -29,8 +27,7 @@
29 27
 
30 28
 (defpackage :fwoar.cl-git.types
31 29
   (:use :cl )
32
-  (:export
33
-   #:octet))
30
+  (:export #:octet))
34 31
 
35 32
 (defpackage :cl-git-user
36 33
   (:use :cl :fwoar.cl-git))
... ...
@@ -4,8 +4,8 @@
4 4
   (:method :around (type s repository &key hash)
5 5
     (let ((result (call-next-method)))
6 6
       (prog1 result
7
-        (when (typep result 'fwoar.cl-git::git-object)
8
-          (setf (fwoar.cl-git::hash result) hash)))))
7
+        (when (typep result 'fwoar.cl-git:git-object)
8
+          (setf (fwoar.cl-git:hash result) hash)))))
9 9
 
10 10
 
11 11
   (:method ((type (eql :tag)) s repository &key)
... ...
@@ -13,8 +13,8 @@
13 13
 
14 14
 (defgeneric component (component object)
15 15
   (:argument-precedence-order object component)
16
-  (:method (component (object fwoar.cl-git::git-ref))
17
-    (component component (fwoar.cl-git::extract-object object)))
16
+  (:method (component (object fwoar.cl-git:git-ref))
17
+    (component component (fwoar.cl-git:extract-object object)))
18 18
   (:method ((component sequence) object)
19 19
     (reduce (lambda (cur next)
20 20
               (component next cur))