Make `ielm' setup work on Emacs-29.0.60

This commit is contained in:
Gerard Vermeulen 2023-01-03 21:03:10 +01:00
parent 91930a038e
commit 64275f4040
1 changed files with 7 additions and 5 deletions

View File

@ -4233,15 +4233,17 @@ many Emacs Lisp idioms.
Listing [[lst:setup-ielm][setup ielm]] customizes the [[https://wikemacs.org/wiki/IELM][Interactive Emacs Lisp Mode]] for better
interoperability with [[https://smartparens.readthedocs.io/en/latest/][Smartparens]]: get help on the key bindings by means of
src_emacs-lisp{(describe-mode (get-buffer "*ielm*"))}.
src_emacs-lisp{(describe-function 'inferior-emacs-lisp-mode)}.
#+caption)}[Setup =ielm=]:
#+caption: Install =ielm=.
#+caption[Setup =ielm=]:
#+caption: Setup =ielm=.
#+name: lst:setup-ielm
#+begin_src emacs-lisp
(with-eval-after-load 'ielm
(custom-set-variables
'(ielm-dynamic-return nil)))
(if (version< "29.0.0" emacs-version)
(setopt ielm-dynamic-return nil)
(custom-set-variables
'(ielm-dynamic-return nil))))
#+end_src
** [[https://fennel-lang.org/][Fennel Programming]]