Supongamos que tengo una función similar a la siguiente (como suele ser el caso al imprimir resultados de elisp). (defun my-example-function () (let ((a (do-something)) (b (do-something))) (setq someone me) (with-current-buffer b (do-that (or this (and that those))) (format "%s" a)))) Me...