emacs find-tag在.el.gz文件方面遇到问题

时间:2010-08-06 04:05:48

标签: emacs etag

当我使用find-tags时,我收到以下错误:

文件:找不到/Applications/Emacs.app/Contents/Contents/Resources/lisp/simple.el

simple.el.gz存在,我使用

构建了TAGS
(find . -name *.el && find . -name *.el.gz) | etags -

我在雪豹上使用以下版本的emacs:

“GNU Emacs 23.1.1(i386-apple-darwin9.7.0,NS apple-appkit-949.46)  2009-07-30 on neutron.local“

任何想法如何让这个工作?谢谢!

1 个答案:

答案 0 :(得分:3)

您是否启用了jka-compr?如果已启用,Etags将自动检查是否存在压缩文件版本。这就是您需要添加到.emacs中的全部内容:

(require 'jka-compr)