diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-10-21 22:26:06 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2004-10-21 22:26:06 +0000 |
commit | 13376c78309524643382d9d3697a086fc495e861 (patch) | |
tree | 692446a44761968929e1abf2bea5fc5a676cbe87 /lisp/textmodes | |
parent | bdfe3dc05ca336b56cd7a9266f49bd8c162717a4 (diff) | |
download | emacs-13376c78309524643382d9d3697a086fc495e861.tar.gz |
(tex-compilation-parse-errors): Don't output messages.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/tex-mode.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index ddcaaa0bf4f..5c5e0a4d1c7 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -1946,7 +1946,6 @@ since TeX does not put file names and line numbers on the same line as for the error messages." (require 'thingatpt) (setq compilation-error-list nil) - (message "Parsing error messages...") (let ((default-directory ; Perhaps dir has changed meanwhile. (file-name-directory (buffer-file-name tex-last-buffer-texed))) found-desired (num-errors-found 0) @@ -2012,8 +2011,7 @@ for the error messages." compilation-error-list)) (goto-char end-of-error))))) (set-marker compilation-parsing-end (point)) - (setq compilation-error-list (nreverse compilation-error-list)) - (message "Parsing error messages...done")) + (setq compilation-error-list (nreverse compilation-error-list))) ;;; The commands: |