所以,回到一月份,我去了这里:
我下载了 Emacs 并一直在我的 Mac 上使用它,我喜欢它。我已经开始尝试进入 Elisp 编程。要了解更多信息,我想查找一些函数。所以例如我这样做:
C-h f
Run Code Online (Sandbox Code Playgroud)
然后输入“向下滚动”
这给了我以下文字:
>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 `-'.
Run Code Online (Sandbox Code Playgroud)
文本“window.c”是一个链接。所以我点击链接,我得到:
find-function-C-source: The C source file window.c is not available
Run Code Online (Sandbox Code Playgroud)
我在做很多不同的事情时经常遇到这个错误。我在哪里可以找到正确的路径,我如何告诉 Emacs 这条路径是什么?
我最近才安装了一些 ELPA 软件包,所以也许其中一个引起了一些混乱?