Skip to content

Commit

Permalink
add system-file-patterns to connection
Browse files Browse the repository at this point in the history
  • Loading branch information
cxxxr committed Nov 30, 2024
1 parent d929358 commit 86d9f36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion extensions/lisp-mode/connection.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@
:type string
:documentation "The server's Swank version.")
(features :accessor connection-features)
(system-file-patterns :accessor connection-system-file-patterns)
(info :accessor connection-info)
(command :initform nil :accessor connection-command)
(process :initform nil :accessor connection-process)
Expand Down Expand Up @@ -200,7 +201,9 @@
(connection-package connection)
(getf (getf data :package) :name)
(connection-prompt-string connection)
(getf (getf data :package) :prompt)))
(getf (getf data :package) :prompt)
(connection-system-file-patterns connection)
(getf data :system-file-patterns)))
(return)))

(log:debug "Creating the REPL" connection)
Expand Down
2 changes: 1 addition & 1 deletion qlfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
("micros" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/lem-project/micros.git")
:version "git-af94fe5d6688f67a092f604765fb706ebae44e99"))
:version "git-25177e04a946365397a0848a6545399860d310d0"))
("lem-mailbox" .
(:class qlot/source/git:source-git
:initargs (:remote-url "https://github.com/lem-project/lem-mailbox.git")
Expand Down

0 comments on commit 86d9f36

Please sign in to comment.