Hello,
Since I switched now permanently to the CVS-Emacs version dating from
the 16th of April 2005 (precompiled binary for Windows downloadable from
http://www.crasseux.com/emacs/), I wanted to ask about the status of the
compile-reinitialize-errors replacement investigations.
I had something like
(add-to-list 'compilation-finish-functions
(lambda (compilation-buffer finishing-message)
(lmcompile-do-highlight)))
in my .emacs file, but since lmcompile-do-highlight calls
lmcompile-reinitialize-errors, which is defined as
;; Compatibility
(if (fboundp 'compile-reinitialize-errors)
(defalias 'lmcompile-reinitialize-errors 'compile-reinitialize-errors)
;; Newer versions of Emacs:
(defun lmcompile-reinitialize-errors (&rest foo)
"Find out what this should be."
(error "Need replacement for `compile-reinitialize-errors")
)
)
in lmcompile.el, it no longer works for recent Emacs versions.
Thanks for reading,
Markus
|