Skip to content

Commit

Permalink
Fix the use of native Lisp symbols as Treep symbols in the REPL
Browse files Browse the repository at this point in the history
  • Loading branch information
alessiostalla committed Mar 16, 2024
1 parent 292f613 commit 776073f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/level0/repl.lisp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(in-package :treep-impl)

(defconstant +symbol-repl+ (intern "repl" +symbol-treep+))
(defconstant +symbol-repl-quit+ (intern "quit" +symbol-repl+))
(defvar +symbol-repl+ (intern "repl" +symbol-treep+))
(defvar +symbol-repl-quit+ (intern "quit" +symbol-repl+))

;;TODO expose to the REPL as just "quit"
(define-abstraction quit +symbol-repl-quit+)
Expand Down

0 comments on commit 776073f

Please sign in to comment.