From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Olaf Newsgroups: gmane.emacs.help Subject: [auctex] Setting TeX-command-list Date: Wed, 04 Nov 2009 09:06:36 +0100 Organization: University of Magdeburg, Germany Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1257339377 1804 80.91.229.12 (4 Nov 2009 12:56:17 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 4 Nov 2009 12:56:17 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Nov 04 13:56:10 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N5fPE-0007AO-MW for geh-help-gnu-emacs@m.gmane.org; Wed, 04 Nov 2009 13:56:08 +0100 Original-Received: from localhost ([127.0.0.1]:43863 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N5fPE-0003OC-1G for geh-help-gnu-emacs@m.gmane.org; Wed, 04 Nov 2009 07:56:08 -0500 Original-Path: news.stanford.edu!usenet.stanford.edu!news.glorb.com!news2.glorb.com!feeder.erje.net!news.musoftware.de!wum.musoftware.de!news.mind.de!news.cs.uni-magdeburg.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 26 Original-NNTP-Posting-Host: imat46.mb.uni-magdeburg.de Original-X-Trace: fuerst.cs.uni-magdeburg.de 1257321996 9450 141.44.146.46 (4 Nov 2009 08:06:36 GMT) Original-X-Complaints-To: abuse@cs.uni-magdeburg.de Original-NNTP-Posting-Date: Wed, 4 Nov 2009 08:06:36 +0000 (UTC) User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) Original-Xref: news.stanford.edu gnu.emacs.help:174388 X-Mailman-Approved-At: Wed, 04 Nov 2009 07:55:40 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:69469 Archived-At: Hi, I've emacs/win32 to use MikTeX's aux-directory feature - even wrong: site-lisp/site-start.d/auctex.el: (add-hook 'LaTeX-mode-hook (function (lambda () (add-to-list 'TeX-command-list '("TeX" "%(PDF)%(tex) %`%S%(PDFout)%(mode)%' %t" TeX-run-TeX t (plain-tex-mode texinfo-mode ams-tex-mode) :help "Run plain TeX")) (add-to-list 'TeX-command-list '("LaTeX" "%`%l -aux-directory=./auxil %(mode)%' %t" TeX-run-TeX nil (latex-mode doctex-mode) :help "Run LaTeX")) ... (add-to-list 'TeX-command-list '("BibTeX" "bibtex -include-directory=./auxil %s" TeX-run-BibTeX nil t :help "Run BibTeX") ("View" "%V" TeX-run-discard t t :help "Run Viewer")) ... ))) Some of the entries appears twice in the config. How can I overwrite them here? How can I enfore the existence of the directory - even create on demand? Thanks, Olaf