所以,早在一月份,我就去了这里:
我下载了 Emacs 并一直在我的 Mac 上使用它,我喜欢它。我已经开始尝试进入 Elisp 编程。要了解更多信息,我想查找一些功能。所以例如我这样做:
C-h f
然后输入“向下滚动”
这给了我以下文字:
>scroll-down is an interactive built-in function in `window.c'.
>
>It is bound to <kp-prior>, <prior>, C-1, C-x C-1, M-v.
>
>(scroll-down &optional ARG)
>
>Scroll text of selected window down ARG lines.
>If ARG is omitted or nil, scroll down by a near full screen.
>A near full screen is `next-screen-context-lines' less than a full screen.
>Negative ARG means scroll upward.
>If ARG is the atom `-', scroll upward by nearly full screen.
>When calling from a program, supply as argument a number, nil, or `-'.
文本“window.c”是一个链接。所以我点击链接,我得到:
find-function-C-source: The C source file window.c is not available
在做很多不同的事情时,我经常遇到这个错误。我在哪里可以找到正确的路径,以及如何告诉 Emacs 那条路径是什么?
我最近刚刚安装了一些 ELPA 包,所以也许其中一个包引起了一些混乱?