I\'m evaluating/testing a browser based application presumably written in common lisp. Apart from the browser based interface, the software provides a \'Listener\' window wi
(let ((lst ())) (do-all-symbols (s lst) (when (fboundp s) (push s lst))) lst)
Pretty much taken as-is from here.