【发布时间】:2013-01-30 14:12:13
【问题描述】:
我想预先建议一些使用交互式参数的函数,例如find-dired:
(defadvice find-dired (before eab-find-dired activate)
(message "before!")
(setq find-args '("-iname '**'" . 10)))
但 emacs 仅在 find-dired 交互式会话之后执行此建议,而我之前无法设置 find-args。如何解决矛盾?
更新。注意defadvice 宏是deprecated。
【问题讨论】:
-
对于新读者,请注意
defadvice已弃用,您现在应该使用add-function、add-advice(and their companion functions)
标签: emacs defadvice advising-functions