From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Steve Throckmorton Newsgroups: gmane.emacs.bugs Subject: Re: TeX called improperly Date: Thu, 18 Apr 2002 19:33:38 -0400 Sender: bug-gnu-emacs-admin@gnu.org Message-ID: References: <200204162017.g3GKHwc24346@aztec.santafe.edu> NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1019172964 25365 127.0.0.1 (18 Apr 2002 23:36:04 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 18 Apr 2002 23:36:04 +0000 (UTC) Cc: steve@doodlebeth.com, bug-gnu-emacs@gnu.org Return-path: Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 16yLRc-0006b0-00 for ; Fri, 19 Apr 2002 01:36:04 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.34 #1 (Debian)) id 16yLRm-0006rP-00; Thu, 18 Apr 2002 19:36:14 -0400 Original-Received: from dc-mx07.cluster0.hsacorp.net ([209.225.8.17] helo=mx06.cluster1.charter.net) by fencepost.gnu.org with smtp (Exim 3.34 #1 (Debian)) id 16yLPM-0006jg-00; Thu, 18 Apr 2002 19:33:44 -0400 Original-Received: from [24.241.190.34] (HELO AMD1700) by mx06.cluster1.charter.net (CommuniGate Pro SMTP 3.5.9) with ESMTP id 1251224; Thu, 18 Apr 2002 19:33:38 -0400 Original-To: rms@gnu.org In-Reply-To: <200204162017.g3GKHwc24346@aztec.santafe.edu> (message from Richard Stallman on Tue, 16 Apr 2002 14:17:58 -0600 (MDT)) Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.9 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:780 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:780 Date: Tue, 16 Apr 2002 14:17:58 -0600 (MDT) X-Authentication-Warning: aztec.santafe.edu: rms set sender to rms@aztec using -f From: Richard Stallman CC: bug-gnu-emacs@gnu.org Reply-to: rms@gnu.org X-RCPT-TO: X-UIDL: 315135886 The other problem I had was that emacs was calling tex.exe with the option string (tex-start-options-string), which I set within buffer with the Local Variables feature, in quotes (""). This caused the options to be ignored by TeX. What value did you use? What job was it meant to accomplish? Here is the entire Local Variables section I am using for this file: %Local Variables: %mode:tex %mode:auto-fill %tex-command:"c:\\texmf\\miktex\\bin\\tex " %tex-start-options-string:"--output-directory=c:\\steve\\tex --interaction=nonstopmode" %tex-dvi-view-command:"c:\\texmf\\miktex\\bin\\yap.exe -1" %End: The version of TeX I am using accepts optional arguments in format: --option-name=optionsetting It (gracefully, I must say) ignores the arguments if they are quoted, which is how Emacs was delivering them on the command line. Perhaps I'm not supposed to be including quotes when I specify the string, but default values are quoted, so I did mine too.