3

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

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

我在谷歌搜索中没有看到任何类似的问题。我在 OSX 开发人员构建 post-24.3/pre-24.4 上运行 Wanderlust for Emacs。

谢谢。

4

1 回答 1

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))))
于 2013-06-22T19:49:43.297 回答