;; Patch annoying problem with AUC TeX querying log file reloading
;; AUC-TeX-version 9.9p 
;; David Aspinall <da@dcs.ed.ac.uk>
;; $Id$
(eval-after-load "tex-buf"
  '(defadvice TeX-help-error (around revert-log-file-without-query activate)
     (let* ((log-file (TeX-active-master "log"))
	    (revert-without-query (list (regexp-quote log-file))))
       ad-do-it)))
