From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Pierre Albarede Newsgroups: gmane.emacs.help Subject: how to point at (latex) compiling error line ? Date: Wed, 26 Mar 2003 22:35:45 +0100 Organization: Guest of ProXad - France Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <3E821D31.5040801@free.fr> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1048714927 5865 80.91.224.249 (26 Mar 2003 21:42:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 26 Mar 2003 21:42:07 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 26 22:42:05 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18yIer-0001WM-00 for ; Wed, 26 Mar 2003 22:42:05 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 18yIdg-0007Ua-00 for gnu-help-gnu-emacs@m.gmane.org; Wed, 26 Mar 2003 16:40:52 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.uchicago.edu!newsswitch.lcs.mit.edu!newspump.monmouth.com!newspeer.monmouth.com!newsfeed.icl.net!newsfeed.fjserv.net!colt.net!kibo.news.demon.net!demon!proxad.net!feeder2-1.proxad.net!news3-1.free.fr!not-for-mail User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-US; rv:1.0.2) Gecko/20021120 Netscape/7.01 X-Accept-Language: en-us, en Original-Newsgroups: gnu.emacs.help Original-Lines: 43 Original-NNTP-Posting-Date: 26 Mar 2003 22:35:24 MET Original-NNTP-Posting-Host: 62.147.24.156 Original-X-Trace: 1048714524 news3-1.free.fr 28751 62.147.24.156:49652 Original-X-Complaints-To: abuse@proxad.net Original-Xref: shelby.stanford.edu gnu.emacs.help:111435 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:7935 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:7935 Hello. I would like emacs to point at any latex compiling error line, right in the source buffer. So far (see .emacs below), I only get edition in the log window, with ugly format (and after answering E to tex). Same problem with any compiler providing error line number. Thanks for hints. GNU Emacs 21.3.50.4 (powerpc-apple-darwin6.2) of 2002-12-01 on marx.local. % cat .emacs [...] ;; The LaTeX command menu, completely customisable (setq TeX-command-list (list (list "TeX" "tex '\\nonstopmode\\input %t'" 'TeX-run-TeX nil t) ;; (list "LaTeX" "%l '\\nonstopmode\\input{%t}'" 'TeX-run-LaTeX nil t) (list "LaTeX" "%l '\\input{%t}'" 'TeX-run-interactive nil t) (if TeX-a4-paper (list "Postscript" "dvips -ta4 %d -o %f " 'TeX-run-command t nil) (list "Postscript" "dvips %d -o %f " 'TeX-run-command t nil)) (list "PDF" "dvipdf %d %s.pdf" 'TeX-run-command t nil) (list "PDF (scalable)" (concat dvipdf-scalable-program " %d %s.pdf") 'TeX-run-command t nil) (list "View" "%s" 'TeX-run-view-command nil nil) (list "Print" "%p %r " 'TeX-run-command t nil) (list "Queue" "%q" 'TeX-run-background nil nil) (list "Convert to HTML" "htlatex %t;open %s.html" 'TeX-run-command t nil) (list "BibTeX" "bibtex %s" 'TeX-run-BibTeX nil nil) (list "Index" "makeindex %s" 'TeX-run-command nil t) (list "Check" "lacheck %s" 'TeX-run-compile nil t) (list "Spell" "" 'TeX-run-ispell-on-document nil nil) (list "Makeinfo" "makeinfo %t" 'TeX-run-compile nil t) (list "Makeinfo HTML" "makeinfo --html %t" 'TeX-run-compile nil t) (list "AmSTeX" "amstex '\\nonstopmode\\input %t'" 'TeX-run-TeX nil t) (list "pdfLaTeX & view" "pdflatex '\\nonstopmode\\input{%t}';open %s.pdf" 'TeX-run-LaTeX nil t) (list "Other..." "" 'TeX-run-command t t) ))