Noam Postavsky
Noam Postavsky
I think it would be useful to compare this mode with embedded calc mode, in the README and perhaps explain why you would use this instead. I think one obvious...
Let the safe properties be updated even if others are not known to be safe. This is a prequisite to solving #2232. See also https://github.com/dimitri/el-get/pull/2238#issuecomment-138383276. Fixes #2359. Additionally, always use...
@MHOOO wrote at https://github.com/dimitri/el-get/commit/85eca62e323303531cfd17b97b06f09e69446248#commitcomment-20000437 > Isnt el-get supposed to stay up-to-date, instead of using builtins? There's not really a hard rule about it, but since CEDET has been builtin since...
`git blame` tells me @dimitri and @DarwinAwardWinner were the main authors of this; some discussion about it in #434. No mentions of `unload-feature`. I think it would make sense to...
It's possible to use `:build/ (progn nil)` as a workaround.
https://github.com/mhayashi1120/Emacs-esqlite/blob/bc4047e09b8f6c34802db86095cd465935670dce/esqlite.el#L654-L655 Turns out `windows-nt` systems don't have "echo": ```elisp system-type ;=> windows-nt (call-process "echo" nil nil nil "1") ;=> Searching for program: No such file or directory, echo ``` `(call-process-shell-command...
Hi, I'm trying to work out how the rudel code is put together, though I'm finding the CLOS based stuff a bit hard to follow. I've looked at `doc/development.org` but...
> ;; There's no way to memoize nil returns, but why would your expensive > ;; functions do all that work just to return nil? :-) I had an example...