From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: flymake and filenames matching [0-9]+.tex Date: Sat, 27 Nov 2010 15:26:58 -0500 Message-ID: <2h7hfyikbx.fsf@fencepost.gnu.org> References: <87y68f7vhq.fsf@raven.defaultvalue.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1290889635 15382 80.91.229.12 (27 Nov 2010 20:27:15 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 27 Nov 2010 20:27:15 +0000 (UTC) Cc: emacs-devel@gnu.org To: Rob Browning Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 27 21:27:11 2010 Return-path: Envelope-to: ged-emacs-devel@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 1PMRMS-0006qY-UW for ged-emacs-devel@m.gmane.org; Sat, 27 Nov 2010 21:27:09 +0100 Original-Received: from localhost ([127.0.0.1]:58800 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PMRMS-0007BA-De for ged-emacs-devel@m.gmane.org; Sat, 27 Nov 2010 15:27:08 -0500 Original-Received: from [140.186.70.92] (port=54884 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PMRMN-00078i-5M for emacs-devel@gnu.org; Sat, 27 Nov 2010 15:27:04 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PMRMM-0000N5-32 for emacs-devel@gnu.org; Sat, 27 Nov 2010 15:27:03 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]:52899) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PMRMM-0000N0-07 for emacs-devel@gnu.org; Sat, 27 Nov 2010 15:27:02 -0500 Original-Received: from localhost ([127.0.0.1]:36765) by fencepost.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1PMRMI-00036M-GN; Sat, 27 Nov 2010 15:26:58 -0500 X-Spook: enemy of the state defense information warfare virus X-Ran: Yv;9h"^Yc#^m-`DQnb15SL,5PC;pqr34l,rwWXJS%*)hL1!` (Rob Browning's message of "Fri\, 26 Nov 2010 13\:09\:05 -0600") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:133195 Archived-At: Rob Browning wrote: > A Debian bug has been filed against emacs23[1] complaining that flymake > won't work on TeX files whose names end in [0-9]+.tex. > > Since there is a regex in flymake-allowed-file-name-masks that matches > those filenames, I suspect the behavior is intentional -- I was hoping > someone could verify that. I suspect whoever wrote that used the convention: master.tex: %% This is the master file. %% These are included files. These cannot be latex'd directly, %% instead latex the main file. \input{chapter1.tex} \input{chapter2.tex} Who knows how widespread that convention is, but since it is a defcustom, anyone can change their personal setting. It seems a bit limited, since eg it does not work for \include as well (easily fixed though), and it does not work if the .tex extension is omitted from the \input command.