Emacs C has lots of sizeof(struct)*CHAR_BITS. Explicit is good, but I doubt many users have CHAR_BITS != 8.
miniblog.
Related Posts
I've finally added an incremental search option to deadgrep! https://github.com/Wilfred/deadgrep/blob/master/CHANGELOG.md#v012
I also learnt that incremental tools don't do anything clever with the minibuffer: they just call read-char in a loop.
Cute elisp trick I haven't seen before: point works as a place with setf!
;; Move point to the beginning of the buffer
(setf (point) (point-min))
;; Equivalent:
(goto-char (point-min))