lisp-chat
lisp-chat copied to clipboard
Give support to execute lisp-chat-client:main inside of a SLIME session
For now everything is fucked up if I call (lisp-chat-client:main)
inside of SLIME REPL (Emacs).
This should be possible to avoid any type of hassle during the development. Maybe I should look how I can check if it is running inside of SLIME and try to not use GNU readline inside of it.
The task above can be accomplished by using conditional readers like:
#+swank (+ 1 2) ;; execute only when swank is bound
#-swank (+ 1 2) ;; execute only when swank is not bound