这是一条错误消息,如果是这样,我应该关注追踪根本原因吗?
ad-handle-definition: `mime-display-message' got redefined
我在搜索Google时没有看到任何类似的问题。我在OSX开发人员构建24.3 / 24.4之前的版本上为Emacs运行了Wanderlust。
感谢。
答案 0 :(得分:0)
. . . /semi/site-lisp/semi/mime-view.el
包含一个名为mime-display-message
的函数 - 此函数在. . ./share/emacs/site-lisp/w3m/mime-w3m.el
中重新定义。
(let (current-load-list)
(defadvice mime-display-message
(after add-emacs-w3m-functions-to-pre/post-command-hook activate compile)
"Advised by emacs-w3m.
Add some emacs-w3m utility functions to pre/post-command-hook."
(when (featurep 'w3m)
(w3m-make-local-hook 'pre-command-hook)
(w3m-make-local-hook 'post-command-hook)
(add-hook 'pre-command-hook 'w3m-store-current-position nil t)
(add-hook 'post-command-hook 'mime-w3m-check-current-position nil t))))