DEV Community

Discussion on: Part 1: Using Org to Develop Elisp

Collapse
 
tobiaszawada profile image
TobiasZawada • Edited

One way to never forget cdr is using dolist or the cl-loop facility instead of a raw while loop.
I almost never use while for iterating on lists. while is better for loops that stop on conditions like reaching the end of the buffer.