Questions tagged [ielm]
The ielm tag has no summary.
8 questions
0 votes
0 answers
45 views
Message function doesn't display its output neither in *ielm* buffer nor in minibuffer
I'm working on ELisp on ielm buffer and suddenly messages stop to appear: (defun my-fun () (message "%s" "tom") 3) (my-fun) -> 3, it doesn't display the message (message &...
1 vote
2 answers
203 views
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 ...
0 votes
1 answer
115 views
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 ...
0 votes
1 answer
56 views
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