Recompiling emacs *.el files
- Language:
Sometimes, when you change the Emacs version and you have own or custom Emacs packages installed and compiled with the previous version you may get unexpected behavior, including invalid function c-point warning message. The best solution for this is recompiling your *.el files using the current Emacs version:
Remove all old *.elc pre-compiled files:
find site-lisp/ -name "*.elc" -print | xargs rm -f
Recompile all Emacs source code files:
emacs --batch --eval "(byte-recompile-directory \"site-lisp/\" 0)"
- artur's blog
- Add new comment
- 26740 reads
Recent comments
3 weeks 5 days ago
5 weeks 6 days ago
20 weeks 4 days ago
28 weeks 1 day ago
29 weeks 4 days ago
29 weeks 6 days ago
37 weeks 3 days ago
48 weeks 3 days ago
1 year 8 weeks ago
1 year 42 weeks ago