fix: disconnect-daemon missing close paren, compilation now succeeds
Major bug: defun disconnect-daemon in channel-tui-main.org was missing its closing paren. Every form after disconnect-daemon (tui-main, tests, etc.) was inside the unclosed defun, causing 'end of file' compile errors. Adding the missing ) fixed all compilation errors. Also revert handler-case change: keep sb-ext:timeout condition type.
This commit is contained in:
@@ -780,7 +780,7 @@ supplied (e.g. \"/\"), pre-fill the select filter with it."
|
||||
(when (st :stream)
|
||||
(ignore-errors (close (st :stream)))
|
||||
(setf (st :stream) nil (st :connected) nil)
|
||||
(add-msg :system (format nil "* Disconnected [now=~a] *" (now))))
|
||||
(add-msg :system (format nil "* Disconnected [now=~a] *" (now)))))
|
||||
#+END_SRC
|
||||
|
||||
** Main Loop
|
||||
@@ -997,8 +997,8 @@ supplied (e.g. \"/\"), pre-fill the select filter with it."
|
||||
(format nil "CTRL-~a"
|
||||
(code-char (+ #x60 code))))
|
||||
:keyword))
|
||||
(t code)))))))))))
|
||||
(sb-ext:timeout ()))
|
||||
(t code))))))))))))
|
||||
(sb-ext:timeout ())
|
||||
;; Check for terminal resize (SIGWINCH sets this flag)
|
||||
(when (boundp 'cl-tty.input::*terminal-resized-p*)
|
||||
(when cl-tty.input::*terminal-resized-p*
|
||||
|
||||
Reference in New Issue
Block a user