I open a .scm file in emacs and I tried to evaluate it in a mit-scheme inferior buffer with the Ctrl + x Ctrl + r command but, nothing happens. I followed the instructions in the "Starting Scheme in Emacs" section in the page with" http://community.schemewiki.org/?emacs-tutorial.
So when a try to evaluate something directly in the buffer running mit-scheme I see the same behavior: nothings is evaluate when I press enter key. But when I use the interpreter directly in command line works well.
My .emacs file looks like this:
;;; Always do syntax highlighting
(global-font-lock-mode 1)
;;; Also highlight parens
(setq show-paren-delay 0
show-paren-style 'parenthesis)
(show-paren-mode 1)
;;; This is the binary name of my scheme implementation
(setq scheme-program-name "mit-scheme")
I have XUbuntu 12.04, emacs23 and mit-scheme 9.1.1.
¿Any idea about the problem?
Thanks in advance
