I'm trying to run Octave from within emacs (I'm mostly a beginner at both but have the hang of emacs shortcuts now). When I try run-octave as suggested here, I get the message.
Searching for file, no such file or directory, octave
Disclaimer: I'm using Windows Vista. Octave is in c:\Octave... the emacs default directory is c:\users\username\
and I added this to the _emacs file:
(autoload 'octave-mode "octave-mod" nil t)
(setq auto-mode-alist
(cons '("\\.m$" . octave-mode) auto-mode-alist))
(autoload 'run-octave "octave-inf" nil t)
Any tips on how to tell emacs where octave is?
Thank you for your help in advance, Massagran