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)"
Recent comments
37 sec ago
7 min 34 sec ago
16 min 27 sec ago
23 min 35 sec ago
28 min 45 sec ago
33 min 10 sec ago
35 min 2 sec ago
39 min 36 sec ago
39 min 58 sec ago
49 min 8 sec ago