canatella / bitbake-el

Integrates Bitbake into emacs
GNU General Public License v3.0
9 stars 15 forks source link

Byte compiled version lacks symbols at run time #14

Closed Apteryks closed 5 years ago

Apteryks commented 5 years ago

The following line is required otherwise the byte compiled version doesn't work as expected: (eval-when-compile (require 'cl-lib))

The workaround was to M-x load-library RET cl-lib and reevaluate the buffer of bitbake-el's source file.

canatella commented 5 years ago

Hello, thanks for the report. I added the compile time require.

Apteryks commented 5 years ago

Thanks for the prompt fix :-)