标签: elisp
在我自己编写的函数中,我想调用命令compile,但让它以交互方式运行,就像我已经完成Meta-x compile一样。只调用(compile)不起作用,因为它需要参数。那么如何强制emacs以交互方式运行compile?
compile
Meta-x compile
(compile)
答案 0 :(得分:2)
答案是:
(call-interactively 'compile)
这正是我在问题中所要求的。