Is there a way to run ielm, but with variables bound to a certain buffer?
I know about M-:
, but having a shell like ielm to inspect things would be much easier.
Is there a way to run ielm, but with variables bound to a certain buffer?
I know about M-:
, but having a shell like ielm to inspect things would be much easier.
(progn (end-of-buffer) (point))
, however all changes are wrapped in asave-excursion
block (among others) that reverts them afterwards. – wasamasa Dec 03 '14 at 13:54save-excursion
. If your discussion leads somewhere, linking to it would be useful. – wasamasa Dec 03 '14 at 14:05