I tried making
(setq inferior-lisp-program "clisp -i /home/ilia/.clisp")
and then putting (setq *print-circle* t)
in the ~/.clisp file
but every time I start M-x slime , and typing
*print-circle* into the REPL, it prints nil
please help, my lisp experimentation has caused my computer to crash too many times
here's my .emacs:
Code: Select all
; LISP (slime)
(setq inferior-lisp-program "clisp -i /home/ilia/.clisp")
(add-to-list 'load-path "~/.slime")
(require 'slime)
(slime-setup)
; Additional settings for lisp
(global-font-lock-mode t)
(show-paren-mode 1)
(add-hook 'lisp-mode-hook '(lambda ()
(local-set-key (kbd "RET") 'newline-and-indent)))
]