# HG changeset patch # User Steve Losh # Date 1545500414 18000 # Node ID cc4c97cc5bc87f0dd27cb3cc5eca9a4445a9cf6a # Parent 4bceb1aba172acd5bf002de1280b270376a0d4cb Update diff -r 4bceb1aba172 -r cc4c97cc5bc8 README.markdown --- a/README.markdown Sun Nov 11 17:19:56 2018 -0500 +++ b/README.markdown Sat Dec 22 12:40:14 2018 -0500 @@ -473,3 +473,20 @@ Then reboot, and `xbacklight` would finally work. Played some DCSS for the first time in a long while. Still fun. + +# December 2018 + +## 2018-12-22 + +Trying to debug why `ccl:*unprocessed-command-line-arguments*` isn't working. + +I can run CCL and connect to it with Vlime to jump around, which is great, but +this particular problem is about command line argument processing so I had to +figure out how to rebuild CCL to add some logging. Turns out you just +`(rebuild-ccl)` in a running CCL to tell it to rebuild itself. I can even do +that in the Vlime process, and then run the binary in another terminal. Cool. + +I eventually [tracked +down](https://github.com/Clozure/ccl/issues/177#issuecomment-449586557) why the +command line arguments are wonky. No idea if this is a bug or intended +behavior, but at last I understand what is happening now.