diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-06 21:49:27 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2020-10-06 21:49:27 -0400 |
commit | cfb04f6743dcf73e26946d4057eb5e1eef468d38 (patch) | |
tree | 30ca7556ad76d1f988e047e9cebba4a7857a5f70 | |
parent | ac8d9ff7d47d642eefceedfb8ce79f7badf7b072 (diff) |
kernel: Remove name slot.
The <node> class already has this, and name should be a symbol anyway.
-rw-r--r-- | starling/kernel.scm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/starling/kernel.scm b/starling/kernel.scm index 23d1bad..217b53e 100644 --- a/starling/kernel.scm +++ b/starling/kernel.scm @@ -122,8 +122,6 @@ #:init-keyword #:fullscreen?)) (define-class <kernel> (<scene-mux>) - (name #:accessor name #:init-form "lisparuga-kernel" - #:init-keyword #:name) (window-config #:accessor window-config #:init-form (make <window-config>) #:init-keyword #:window-config) (update-hz #:accessor update-hz #:init-form 60 |