new comint mod in emacs for plink (putty): Symbol's function definition is void

纵然是瞬间 提交于 2019-12-04 17:22:24

You have not loaded library comint. You need to do that before Emacs can know about comint-check-proc.

Add a (require 'comint), either in your init file or near the beginning of run-plink - somewhere before it tries to use comint-check-proc.

To give this question an answer, which is also meaningful for other questions marked as duplicates of this one, but actually are about other packages not being loaded, I will give a more general answer, which should be applicable to the other questions as well.

Generally an error Symbol's function definition is void often indicates, that a package was not loaded, but then someone/something tried to use it.

So the general answer, that you probably need to (require '<package name>) in your init.el, where the package name is the name of the package which provides what is currently void.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!