From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: bhargava Newsgroups: gmane.emacs.help Subject: Emacs: Latex syntax using Flymake. Date: Sat, 29 Jan 2011 02:35:15 -0800 Message-ID: <1296297315.1990.19.camel@mybox> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1296491273 32358 80.91.229.12 (31 Jan 2011 16:27:53 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 31 Jan 2011 16:27:53 +0000 (UTC) To: "help-gnu-emacs@gnu.org" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 31 17:27:49 2011 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.69) (envelope-from ) id 1PjwbU-00016k-Mf for geh-help-gnu-emacs@m.gmane.org; Mon, 31 Jan 2011 17:27:48 +0100 Original-Received: from localhost ([127.0.0.1]:32860 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PjwbT-0000Rf-Nz for geh-help-gnu-emacs@m.gmane.org; Mon, 31 Jan 2011 11:27:47 -0500 Original-Received: from [140.186.70.92] (port=47555 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pj89c-0007zo-Fl for help-gnu-emacs@gnu.org; Sat, 29 Jan 2011 05:35:41 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pj89F-00069f-VF for help-gnu-emacs@gnu.org; Sat, 29 Jan 2011 05:35:19 -0500 Original-Received: from mail-iy0-f169.google.com ([209.85.210.169]:39554) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pj89F-00069P-SE for help-gnu-emacs@gnu.org; Sat, 29 Jan 2011 05:35:17 -0500 Original-Received: by iyj17 with SMTP id 17so3980856iyj.0 for ; Sat, 29 Jan 2011 02:35:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:content-type:date:message-id :mime-version:x-mailer:content-transfer-encoding; bh=baZs8BUWqRattoLizAby9iUy/jYIptXIKuqSAs+8FfY=; b=xBO/gwKD3GgjMPpgqU0i/7/xKMg3/O/p37+dsmRChIMZ0Urc1mN/QobERWmqxw/0PE cZ1oWXZxyniCsfySYOKuf6bJV9SIMKBeZdjdHPOhARmregO8d60IPHkZuuAFPqxLA9KT MsgDHxVFGWuASmf7lYNjlldn6gGJXv6ViYhs0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; b=LMPluev8iJ2/50C8xlaON8jVl/0jA13y208CwOAEXJwffJtSZepZRzDIrkROy0rZm0 2LcRP6v1PmBJRbc0HxITc8uVtEbTRuYa5j6gJxENnQCbzSJ8QnLwbR1n+eyFFWpCR6jz j2r8q25YvikxOKQqiywPSlfO4x+xd3lx2e49Y= Original-Received: by 10.231.169.208 with SMTP id a16mr3931782ibz.45.1296297316755; Sat, 29 Jan 2011 02:35:16 -0800 (PST) Original-Received: from [192.168.1.107] (c-98-207-82-106.hsd1.ca.comcast.net [98.207.82.106]) by mx.google.com with ESMTPS id d21sm15664009ibg.3.2011.01.29.02.35.14 (version=SSLv3 cipher=RC4-MD5); Sat, 29 Jan 2011 02:35:15 -0800 (PST) X-Mailer: Evolution 2.30.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 209.85.210.169 X-Mailman-Approved-At: Mon, 31 Jan 2011 11:25:30 -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:78869 Archived-At: Hi all, I'm trying to use emacs in the auctex mode. But Flymake complains about something I could not understand. This is the error it shows whenever I open a tex file. Flymake:Configuration error has occured while running (texify --pdf --tex-option=-c-style-errors PATH_TO_FILE_DIRECTORY/FILE_flymake.tex). Flymake will be switched OFF. I have texify installed on my system. I also tried suggestions in the emacs wiki on FlymakeTex, added the following lines in my .emacs file: (defun flymake-get-tex-args (file-name) (list "pdflatex" (list "-file-line-error" "-draftmode" "-interaction=nonstopmode" file-name))) But this does not help. How do I stop this msg and use flymake. Thanks, -- Yaami.