Adam Porter
Adam Porter
I looked briefly at `seq` and it doesn't have anything for plists. I looked at your "dangerous" repo. ;) `-pl-insert` sure looks useful...
This may not exactly be relevant, but I just (re?)discovered https://github.com/nicferrier/emacs-kv The `kvplist->merge` function looks very useful for updating plists.
I should have known there was a way--non-obvious to me, that is. :)
Well, on closer examination, it doesn't give the same results: ```el (cl-loop with list = (list 1 2 3 4 5 6 7 8) for columns from 1 to 8...
I'm guessing one would just use: ``` (cl-struct-slot-value STRUCT-TYPE SLOT-NAME INST) This function has a compiler macro ‘cl-struct-slot-value--inliner’. Return the value of slot SLOT-NAME in INST of STRUCT-TYPE. STRUCT and...
Code looks really nice and clean, well-organized! :)
Cool! To remove the quote, you'll need to make `frame-workflow-define-subject` a macro.
That's kind of awkward, because macros are intended to produce code at compile time. This macro isn't producing a Lisp form, so it's acting like a function at runtime. Also,...
Well, I think that will work correctly, but you should test to make sure. ;) It's really up to you how badly you want to avoid using a quote in...
As it says on this repo's readme, Thorsten is no longer maintaining this package, as he transferred it to me. I'm sorry you found my response "clueless," but the readme...