Name: Anonymous 2010-08-28 18:23
I have a function in a file that's loaded in .emacs, but when I try to call it, Emacs returns a no match. What gives?
(defun compile-c ()
(interactive)
(apply 'make-comint
"cc" "/usr/bin/gcc" nil
(list (buffer-file-name) "-Wall")))