Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 emacs 寻找野牛模式。我找到了一种实现(事实证明,相当老了)。我已将其复制到我的.emacs文件中,(require 'font-lock)并(require 'cc-mode)按照emacs wiki page上的建议。但是,该bison-mode.el文件有以下行(require 'make-regexp),它给出了错误
.emacs
(require 'font-lock)
(require 'cc-mode)
bison-mode.el
(require 'make-regexp)
无法打开加载文件:make-regexp
库的名称是否已更改,或者我是否需要安装其他东西才能使文件正常工作?
谷歌"make-regexp.el"(带双引号)。您将看到可以单独下载该文件。然后把它放在你的load-path.
"make-regexp.el"
load-path
(我不是 Bison 用户 --- 只是做看似合理的事情来找到您需要的文件。但可能是您已经在磁盘上的某个位置拥有该文件。所以首先搜索您的磁盘。一旦你有了它,确保其位置在您的load-path.)