July 8th 2026 - Interesting Finds
How to debug in Emacs
To debug in Emacs we can use (edebug-defun) to debug a function. Put the point inside a function definition and run this command then run the function normally to enter debug mode.
We can also toggle the debugger on error using (toggle-debug-on-error).