lisp-chat icon indicating copy to clipboard operation
lisp-chat copied to clipboard

Give support to execute lisp-chat-client:main inside of a SLIME session

Open ryukinix opened this issue 7 years ago • 2 comments

For now everything is fucked up if I call (lisp-chat-client:main) inside of SLIME REPL (Emacs).

ryukinix avatar Feb 11 '18 17:02 ryukinix

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.

ryukinix avatar Feb 20 '19 23:02 ryukinix

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

ryukinix avatar Feb 27 '19 12:02 ryukinix