Stefan Monnier wrote: >> However, I had to comment out lazy-lock from my .emacs. > > Why? (I mean, it's good that you did, but Emacs should still work > just fine with lazy-lock: i.e. should not have been forced) > >> I see the .el file is now is lisp/obsolete where it does not get >> installed by default, > > It does get installed. And it is autoloaded.
`make autoloads' does not process lisp/obsolete, so lazy-lock-mode and fast-lock-mode do not get autoloaded. emacs -q --no-site-file (require 'font-lock) (fboundp 'jit-lock-mode) ; t (fboundp 'lazy-lock-mode) ; nil (fboundp 'fast-lock-mode) ; nil So people with settings for font-lock-support-mode in .emacs that involve fast-lock and lazy-lock will encounter errors complaining that f-l-mode and l-l-mode are not functions. _______________________________________________ emacs-pretest-bug mailing list [email protected] http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug
