Emacs will recompile the file at runtime

How do you recompile emacs-lisp scripts from emacs without problems? I tried

batch-recompile-direcory
but it causes strange crashes with recompiled files until I restart emacs. Is there a way to do this so that there are no errors?
+1


a source to share


1 answer


This GNU Emacs reference page allows you to reload files and / or libraries.



You definitely need to reload the new file with M-x load-library

, unless there is another emacs mechanism that forces it to reload a function compiled in bytes.

+2


a source







All Articles