On 2016-11-02 Wed 10:19 GMT-0700, John Mastro wrote: > Something like this should do the trick: > > (defun my-cpp-highlight-buffer-advice (orig &rest args) > (let ((inhibit-message t)) > (apply orig args))) > > (with-eval-after-load 'cpp > (advice-add 'cpp-highlight-buffer :around > #'my-cpp-highlight-buffer-advice)) > > Hope that helps > Thanks. FYI, I've submitted a patch to resolve this issue, which is probably more elegant: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=24861#17 Hong