From unknown Sun Jun 22 17:12:17 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#25674 <25674@debbugs.gnu.org> To: bug#25674 <25674@debbugs.gnu.org> Subject: Status: Support for subfiles in `reftex-TeX-master-file' Reply-To: bug#25674 <25674@debbugs.gnu.org> Date: Mon, 23 Jun 2025 00:12:17 +0000 retitle 25674 Support for subfiles in `reftex-TeX-master-file' reassign 25674 auctex submitter 25674 Arash Esbati severity 25674 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Feb 10 03:49:30 2017 Received: (at submit) by debbugs.gnu.org; 10 Feb 2017 08:49:30 +0000 Received: from localhost ([127.0.0.1]:33783 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cc6tW-0001ol-B9 for submit@debbugs.gnu.org; Fri, 10 Feb 2017 03:49:30 -0500 Received: from eggs.gnu.org ([208.118.235.92]:56186) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cc6tU-0001oY-Df for submit@debbugs.gnu.org; Fri, 10 Feb 2017 03:49:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cc6tN-0005pq-Ak for submit@debbugs.gnu.org; Fri, 10 Feb 2017 03:49:23 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:49291) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cc6tN-0005pm-7e for submit@debbugs.gnu.org; Fri, 10 Feb 2017 03:49:21 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cc6tK-0002am-LO for bug-auctex@gnu.org; Fri, 10 Feb 2017 03:49:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cc6tG-0005oj-Mx for bug-auctex@gnu.org; Fri, 10 Feb 2017 03:49:18 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:58797) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cc6tG-0005of-JK for bug-auctex@gnu.org; Fri, 10 Feb 2017 03:49:14 -0500 Received: from p54ace60d.dip0.t-ipconnect.de ([84.172.230.13]:55883 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.82) (envelope-from ) id 1cc6tF-000757-Vd for bug-auctex@gnu.org; Fri, 10 Feb 2017 03:49:14 -0500 From: Arash Esbati To: auctex-bugs Subject: Support for subfiles in `reftex-TeX-master-file' Date: Fri, 10 Feb 2017 09:48:43 +0100 Message-ID: <86y3xeqvmc.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hi all, the function `reftex-TeX-master-file' in `reftex.el' has support for subfiles package, but I think the regexp there does not match all cases. Please consider a main file "subfile-main.tex" and a sub-file "subfile-sub1.tex" like these: --8<---------------cut here---------------start------------->8--- \documentclass{article} \usepackage{subfiles} \begin{document} \section{Section 1} \label{sec:section-1} \subfile{subfile-sub1.tex} \end{document} %%% Local Variables: %%% mode: latex %%% TeX-master: t %%% End: --8<---------------cut here---------------end--------------->8--- --8<---------------cut here---------------start------------->8--- \documentclass[subfile-main.tex]{subfiles} \begin{document} \section{Subsection 1} \label{sec:subsection-1} \end{document} %%% Local Variables: %%% mode: latex %%% TeX-master: t %%% End: --8<---------------cut here---------------end--------------->8--- `reftex-TeX-master-file' fails to parse the first line and find out the main file due to first part of it: --8<---------------cut here---------------start------------->8--- (defun reftex-TeX-master-file () ;; Return the name of the master file associated with the current buffer. ;; When AUCTeX is loaded, we will use it's more sophisticated method. ;; We also support the default TeX and LaTeX modes by checking for a ;; variable tex-main-file. (let ((master (cond ;; Test if we're in a subfile using the subfiles document ;; class, e.g., \documentclass[main.tex]{subfiles}. It's ;; argument is the main file, however it's not really the ;; master file in `TeX-master-file' or `tex-main-file's ;; sense. It should be used for references but not for ;; compilation, thus subfiles use a setting of ;; `TeX-master'/`tex-main-file' being themselves. ((save-excursion (goto-char (point-min)) (re-search-forward "^[[:space:]]*\\\\documentclass\\[\\([[:word:].]+\\)\\]{subfiles}" nil t)) (match-string-no-properties 1)) --8<---------------cut here---------------end--------------->8--- The regexp looks for [:word:] character class and ignores anything else. Using `-', `_' or digits in main file name will not work. I think the regexp can be reduced to --8<---------------cut here---------------start------------->8--- (re-search-forward "^[[:space:]]*\\\\documentclass\\[\\([^]]+\\)\\]{subfiles}" nil t)) --8<---------------cut here---------------end--------------->8--- as `reftex-TeX-master-file' checks if .tex extension is given or not. With this change, one can use `C-c )' over all files in a project and `C-c C-c' compiles a only subfile when issued in it. Any comments? I would prepare a patch after confirmation here. Best, Arash From debbugs-submit-bounces@debbugs.gnu.org Sun Feb 12 10:13:25 2017 Received: (at 25674) by debbugs.gnu.org; 12 Feb 2017 15:13:25 +0000 Received: from localhost ([127.0.0.1]:37154 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ccvq9-0005hA-0J for submit@debbugs.gnu.org; Sun, 12 Feb 2017 10:13:25 -0500 Received: from eggs.gnu.org ([208.118.235.92]:51448) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ccvq7-0005gy-E4 for 25674@debbugs.gnu.org; Sun, 12 Feb 2017 10:13:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ccvpz-000483-3X for 25674@debbugs.gnu.org; Sun, 12 Feb 2017 10:13:18 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:47714) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ccvpy-00047z-WD for 25674@debbugs.gnu.org; Sun, 12 Feb 2017 10:13:15 -0500 Received: from mail-qt0-f169.google.com ([209.85.216.169]:35992) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1ccvpy-0002C9-EH for 25674@debbugs.gnu.org; Sun, 12 Feb 2017 10:13:14 -0500 Received: by mail-qt0-f169.google.com with SMTP id k15so67690479qtg.3 for <25674@debbugs.gnu.org>; Sun, 12 Feb 2017 07:13:14 -0800 (PST) X-Gm-Message-State: AMke39kzjn44jNRdWb9QlAvldj9cNIlPQNfTBt/+yiH5QUzaS27rcXanikit3HGXKy3IIEUliTauJZTgP93RuA== X-Received: by 10.200.48.110 with SMTP id g43mr16731749qte.277.1486912393659; Sun, 12 Feb 2017 07:13:13 -0800 (PST) MIME-Version: 1.0 Received: by 10.12.181.46 with HTTP; Sun, 12 Feb 2017 07:12:33 -0800 (PST) In-Reply-To: <86y3xeqvmc.fsf@gnu.org> References: <86y3xeqvmc.fsf@gnu.org> From: =?UTF-8?Q?Mos=C3=A8_Giordano?= Date: Sun, 12 Feb 2017 16:12:33 +0100 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: bug#25674: Support for subfiles in `reftex-TeX-master-file' To: Arash Esbati Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 25674 Cc: 25674@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Hi Arash, 2017-02-10 9:48 GMT+01:00 Arash Esbati : > Hi all, > > the function `reftex-TeX-master-file' in `reftex.el' has support for > subfiles package, but I think the regexp there does not match all > cases. Please consider a main file "subfile-main.tex" and a sub-file > "subfile-sub1.tex" like these: > > --8<---------------cut here---------------start------------->8--- > \documentclass{article} > \usepackage{subfiles} > \begin{document} > > \section{Section 1} > \label{sec:section-1} > > \subfile{subfile-sub1.tex} > \end{document} > > %%% Local Variables: > %%% mode: latex > %%% TeX-master: t > %%% End: > --8<---------------cut here---------------end--------------->8--- > > --8<---------------cut here---------------start------------->8--- > \documentclass[subfile-main.tex]{subfiles} > \begin{document} > > \section{Subsection 1} > \label{sec:subsection-1} > > \end{document} > > %%% Local Variables: > %%% mode: latex > %%% TeX-master: t > %%% End: > --8<---------------cut here---------------end--------------->8--- > > `reftex-TeX-master-file' fails to parse the first line and find out the > main file due to first part of it: > > --8<---------------cut here---------------start------------->8--- > (defun reftex-TeX-master-file () > ;; Return the name of the master file associated with the current buffe= r. > ;; When AUCTeX is loaded, we will use it's more sophisticated method. > ;; We also support the default TeX and LaTeX modes by checking for a > ;; variable tex-main-file. > (let > ((master > (cond > ;; Test if we're in a subfile using the subfiles document > ;; class, e.g., \documentclass[main.tex]{subfiles}. It's > ;; argument is the main file, however it's not really the > ;; master file in `TeX-master-file' or `tex-main-file's > ;; sense. It should be used for references but not for > ;; compilation, thus subfiles use a setting of > ;; `TeX-master'/`tex-main-file' being themselves. > ((save-excursion > (goto-char (point-min)) > (re-search-forward > "^[[:space:]]*\\\\documentclass\\[\\([[:word:].]+\\)\\]{subf= iles}" > nil t)) > (match-string-no-properties 1)) > --8<---------------cut here---------------end--------------->8--- > > The regexp looks for [:word:] character class and ignores anything > else. Using `-', `_' or digits in main file name will not work. Agreed. > I > think the regexp can be reduced to > > --8<---------------cut here---------------start------------->8--- > (re-search-forward > "^[[:space:]]*\\\\documentclass\\[\\([^]]+\\)\\]{subfiles}" > nil t)) > --8<---------------cut here---------------end--------------->8--- > > as `reftex-TeX-master-file' checks if .tex extension is given or not. > With this change, one can use `C-c )' over all files in a project and > `C-c C-c' compiles a only subfile when issued in it. > > Any comments? I would prepare a patch after confirmation here. `thing-at-point-file-name-chars' is a good list of characters allowable in filenames (maybe it won't work in some corner case but should do the job in most cases). However I don't have a preference between your regexp and `thing-at-point-file-name-chars'. Bye, Mos=C3=A8 From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 13 03:34:36 2017 Received: (at 25674) by debbugs.gnu.org; 13 Feb 2017 08:34:36 +0000 Received: from localhost ([127.0.0.1]:37796 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdC5j-0008Cv-PI for submit@debbugs.gnu.org; Mon, 13 Feb 2017 03:34:35 -0500 Received: from eggs.gnu.org ([208.118.235.92]:40812) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdC5i-0008Ck-RD for 25674@debbugs.gnu.org; Mon, 13 Feb 2017 03:34:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdC5a-0007p6-K0 for 25674@debbugs.gnu.org; Mon, 13 Feb 2017 03:34:29 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:55563) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cdC5a-0007ox-HC for 25674@debbugs.gnu.org; Mon, 13 Feb 2017 03:34:26 -0500 Received: from p54ace9f4.dip0.t-ipconnect.de ([84.172.233.244]:62943 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.82) (envelope-from ) id 1cdC5Y-0000sS-NG; Mon, 13 Feb 2017 03:34:25 -0500 From: Arash Esbati To: =?iso-8859-1?Q?Mos=E8?= Giordano Subject: Re: bug#25674: Support for subfiles in `reftex-TeX-master-file' References: <86y3xeqvmc.fsf@gnu.org> Date: Mon, 13 Feb 2017 09:34:12 +0100 In-Reply-To: (=?iso-8859-1?Q?=22Mos=E8?= Giordano"'s message of "Sun, 12 Feb 2017 16:12:33 +0100") Message-ID: <867f4u5w1n.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 25674 Cc: 25674@debbugs.gnu.org, Tassilo Horn X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) --=-=-= Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi Mos=E8, Mos=E8 Giordano writes: > 2017-02-10 9:48 GMT+01:00 Arash Esbati : >> >> I think the regexp can be reduced to >> >> --8<---------------cut here---------------start------------->8--- >> (re-search-forward >> "^[[:space:]]*\\\\documentclass\\[\\([^]]+\\)\\]{subfiles}" >> nil t)) >> --8<---------------cut here---------------end--------------->8--- >> >> as `reftex-TeX-master-file' checks if .tex extension is given or not. >> With this change, one can use `C-c )' over all files in a project and >> `C-c C-c' compiles a only subfile when issued in it. >> >> Any comments? I would prepare a patch after confirmation here. > > `thing-at-point-file-name-chars' is a good list of characters > allowable in filenames (maybe it won't work in some corner case but > should do the job in most cases). However I don't have a preference > between your regexp and `thing-at-point-file-name-chars'. Thanks for your response and the hint. I see that @ is missing in `thing-at-point-file-name-chars', I hope that nobody names a file "m@in.tex" (corner case as you said), but I think we are on the safe side if we match everything and reduce the support factor in future ;-) @Tassilo: Can please apply this patch to Emacs master? TIA. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Match-all-characters-in-optional-argument-of-documen.patch >From 19541d95dcfcd167f4cf729434341b630bba0e1b Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Mon, 13 Feb 2017 09:22:12 +0100 Subject: [PATCH] Match all characters in optional argument of \documentclass * lisp/textmodes/reftex.el (reftex-TeX-master-file): Match all characters in optional argument containing name of the main file. --- lisp/textmodes/reftex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/reftex.el b/lisp/textmodes/reftex.el index 18b35981f8..9754d2b20f 100644 --- a/lisp/textmodes/reftex.el +++ b/lisp/textmodes/reftex.el @@ -352,7 +352,7 @@ reftex-TeX-master-file ((save-excursion (goto-char (point-min)) (re-search-forward - "^[[:space:]]*\\\\documentclass\\[\\([[:word:].]+\\)\\]{subfiles}" + "^[[:space:]]*\\\\documentclass\\[\\([^]]+\\)\\]{subfiles}" nil t)) (match-string-no-properties 1)) ;; AUCTeX is loaded. Use its mechanism. -- 2.11.0 --=-=-= Content-Type: text/plain Best, Arash --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 13 11:07:57 2017 Received: (at 25674) by debbugs.gnu.org; 13 Feb 2017 16:07:57 +0000 Received: from localhost ([127.0.0.1]:38761 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdJAT-0003ft-HV for submit@debbugs.gnu.org; Mon, 13 Feb 2017 11:07:57 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:49591) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdJAR-0003fl-Sh for 25674@debbugs.gnu.org; Mon, 13 Feb 2017 11:07:56 -0500 Received: from compute7.internal (compute7.nyi.internal [10.202.2.47]) by mailout.nyi.internal (Postfix) with ESMTP id 43579208D9; Mon, 13 Feb 2017 11:07:55 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute7.internal (MEProxy); Mon, 13 Feb 2017 11:07:55 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=smtpout; bh=P742zUr/T18z8V kDR6iNPeC0Otc=; b=Fe7mYD2WNtKG4B3FYEUYtFDK1iXNdWx08N3yTs9N+ZZ4kJ dUTtpoQ+Lt3ATsL+LYoEEXRXMspEzUJmO8EsuDIfA50MiyiCeSObZus1/4QJAabL zMrb/THKdVCwnvAIgur3iExyNL8ERKXffZu1E5D3o8okJjJYk7YezMAYitwSk= X-ME-Sender: X-Sasl-enc: PkTg7IZmZY0yQXkmOd5G1q3ez/wpYnU9sCf0m+OkM7aq 1487002067 Received: from thinkpad-t440p (p5dec8659.dip0.t-ipconnect.de [93.236.134.89]) by mail.messagingengine.com (Postfix) with ESMTPA id C7CA924356; Mon, 13 Feb 2017 11:07:46 -0500 (EST) From: Tassilo Horn To: Arash Esbati Subject: Re: bug#25674: Support for subfiles in `reftex-TeX-master-file' References: <86y3xeqvmc.fsf@gnu.org> <867f4u5w1n.fsf@gnu.org> Date: Mon, 13 Feb 2017 17:07:41 +0100 In-Reply-To: <867f4u5w1n.fsf@gnu.org> (Arash Esbati's message of "Mon, 13 Feb 2017 09:34:12 +0100") Message-ID: <87fuji13ci.fsf@thinkpad-t440p> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.3 (/) X-Debbugs-Envelope-To: 25674 Cc: =?utf-8?Q?Mos=C3=A8?= Giordano , 25674@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.3 (/) Arash Esbati writes: > @Tassilo: Can please apply this patch to Emacs master? TIA. Done! Bye, Tassilo From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 13 13:27:47 2017 Received: (at 25674-done) by debbugs.gnu.org; 13 Feb 2017 18:27:48 +0000 Received: from localhost ([127.0.0.1]:38816 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdLLn-0006qk-L5 for submit@debbugs.gnu.org; Mon, 13 Feb 2017 13:27:47 -0500 Received: from eggs.gnu.org ([208.118.235.92]:58178) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdLLl-0006qT-HW for 25674-done@debbugs.gnu.org; Mon, 13 Feb 2017 13:27:45 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdLLb-0007jt-He for 25674-done@debbugs.gnu.org; Mon, 13 Feb 2017 13:27:40 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:34679) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cdLLb-0007jn-EJ for 25674-done@debbugs.gnu.org; Mon, 13 Feb 2017 13:27:35 -0500 Received: from p54ace9f4.dip0.t-ipconnect.de ([84.172.233.244]:64416 helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.82) (envelope-from ) id 1cdLLa-0007ax-En; Mon, 13 Feb 2017 13:27:34 -0500 From: Arash Esbati To: Tassilo Horn Subject: Re: bug#25674: Support for subfiles in `reftex-TeX-master-file' References: <86y3xeqvmc.fsf@gnu.org> <867f4u5w1n.fsf@gnu.org> <87fuji13ci.fsf@thinkpad-t440p> Date: Mon, 13 Feb 2017 19:27:21 +0100 In-Reply-To: <87fuji13ci.fsf@thinkpad-t440p> (Tassilo Horn's message of "Mon, 13 Feb 2017 17:07:41 +0100") Message-ID: <86y3xa3q0m.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 25674-done Cc: =?iso-8859-1?Q?Mos=E8?= Giordano , 25674-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Tassilo Horn writes: > Arash Esbati writes: > >> @Tassilo: Can please apply this patch to Emacs master? TIA. > > Done! Thanks, I close this one then. Best, Arash From unknown Sun Jun 22 17:12:17 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 14 Mar 2017 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator