Questions tagged [local-functions]

7 questions
0
votes
1 answer

Recursion with let and cl-labels or just cl-letf?

I found this code on stackoverflow (from Rainer Joswig): (defun listFormat () (cl-labels ((place-index (idx l) (if (null l) nil (append (list (first l)) (list idx) (place-index (+ idx 1) (rest…
147pm
  • 2,959
  • 1
  • 18
  • 42