Questions tagged [ielm]
6 questions
6
votes
3 answers
Edebug REPL / IELM
I toggled edebug-defun on a function I'm studying.
Once the debugger kicks in, how can I fire a REPL with access to the symbols being debugged?
I know it's possible to evaluate commands with e in edebug-mode, but that's on the minibuffer and not as…

Daniel
- 3,563
- 16
- 41
1
vote
2 answers
How to randomize the order of elements in an alist?
I'm using ielm inside Emacs to randomize an associative list. I'm getting duplicate entries a lot of the time, not sure what I'm doing wrong?
(defun q ()
"Q."
(let ((alist))
(setf alist (q-randomize (q-create-alist)))
alist))
(defun…

gdonald
- 167
- 7
1
vote
0 answers
What's the value in using a REPL for ELISP development?
What's the value in using a REPL? I've always wondered the advantages/disadvantages of using a REPL are (if there are any) as opposed to eval-print-last-sexp and then undoing the text printed (or saving it if that's what you're into).
In other…

John DeBord
- 550
- 3
- 13
0
votes
1 answer
How to display unicode chars in ielm
I'm using emacs on MAC OSX
ELISP> (emacs-version)
"GNU Emacs 27.0.50 (build 1, x86_64-apple-darwin18.7.0, NS appkit-1671.60 Version 10.14.6 (Build 18G95))
of 2019-09-06"
ielm REPL echoes back the octal, hex and character representation when…

anquegi
- 739
- 5
- 21
0
votes
0 answers
Default Latex Classes seen by emacs
I am trying to write a project proposal by using org-mode. And when I change the #+LATEX_CLASS variable to something different org can not export to pdf.
So, I wondered how can see list of latex classes that are seen by emacs in ielm ?
B.R.

Kadir Gunel
- 233
- 1
- 10
0
votes
1 answer
Does emacs supports concurrent sessions of ielm / private session?
concurrent sessions - two sessions of ielm running independently
private session - running emacs-lisp code without effecting emacs variables/functions

junnu
- 770
- 3
- 12