tmalsburg / guess-language.el

Emacs minor mode that detects the language you're typing in. Automatically switches spell checker. Supports multiple languages per document.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error in post-command-hook (flyspell-post-command-hook): (void-function find-function-library)

rafoo opened this issue · comments

I get the following error message:

Error in post-command-hook (flyspell-post-command-hook): (void-function find-function-library)

From the beggining of guess-language.el, I assume that the function find-function-library should be found in find-func but no such function is present there in my case. However a function find-library is present.

To my knowledge find-function-library has been part of Emacs for many years. I think this is a problem with your install. I could change to find-library-name if that helps but find-library is not doing what we want.

Thank you for the explanation.

find-function-library is in Emacs since release 24.5 : emacs-mirror/emacs@6d14e0d

I am using the Debian Stable (Jessie) version of Emacs, which is Emacs 24.4.1. This version has find-library-name however.

Pushed a fix: 85cfda4 Please let me know whether that's working for you.

It works! Thank you very much!!