这是一个错误吗?:广告句柄定义:"mime-display-message"被重新定义



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

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

我没有看到任何类似的问题报告在我搜索谷歌。我在OSX开发人员构建后24.3/前24.4的Emacs上运行Wanderlust。

谢谢。

. . . /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))))

最新更新