这是一个错误吗?:ad-handle-definition:`mime-display-message'被重新定义

时间:2013-05-29 19:57:31

标签: emacs

这是一条错误消息,如果是这样,我应该关注追踪根本原因吗?

ad-handle-definition: `mime-display-message' got redefined

我在搜索Google时没有看到任何类似的问题。我在OSX开发人员构建24.3 / 24.4之前的版本上为Emacs运行了Wanderlust。

感谢。

1 个答案:

答案 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))))