git.fiddlerwoaroof.com
Browse code

chore: formatting

Edward Langley authored on 23/05/2023 05:59:31
Showing 1 changed files
... ...
@@ -10,7 +10,6 @@
10 10
   (cffi:define-foreign-library appkit
11 11
     (:darwin (:framework "AppKit"))))
12 12
 
13
-
14 13
 (use-foreign-library foundation)
15 14
 (use-foreign-library cocoa)
16 15
 (use-foreign-library appkit)
... ...
@@ -70,14 +69,14 @@
70 69
     (objc-runtime:add-pointer-ivar app-delegate-class "delegate")
71 70
 
72 71
     (loop for outlet in outlets do
73
-         (objc-runtime:add-pointer-ivar app-delegate-class outlet))
72
+      (objc-runtime:add-pointer-ivar app-delegate-class outlet))
74 73
 
75 74
     app-delegate-class))
76 75
 
77 76
 (defun %setup-objc-class (name base ivars)
78 77
   (let ((class-pair (objc-allocate-class-pair base name 0)))
79 78
     (loop for ivar in ivars
80
-         )))
79
+          )))
81 80
 
82 81
 (defcfun (objc-class-get-name "class_getName" :library foundation)
83 82
     :string