In a function that I am writing myself, I would like to invoke the command compile but have it run interactively, just as if I had done Meta-x compile. Just invoking (compile) doesn't work as it expects arguments. So how do force emacs to run compile "interactively"?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
(call-interactively compile)is the solution - See: gnu.org/s/emacs/manual/html_node/elisp/… . I should have searched more before asking the question. – Dov Grobgeld Aug 9 '11 at 5:16