From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Schmidt Subject: Re: TeX-master: TeX-master is let-bound Date: Sat, 26 Jan 2013 16:23:20 +0000 (GMT) Message-ID: <877gmzlxq8@ch.ristopher.com> References: <87a9vajy4n@ch.ristopher.com> <20121025214510.GB24961@kuru.dyndns-at-home.com> <87sj92chzi@ch.ristopher.com> <20121026065115.GC24961@kuru.dyndns-at-home.com> <87mwz98vz4@ch.ristopher.com> <87ham6s7rf@ch.ristopher.com> <871ud9zgpn.fsf@bzg.ath.cx> <878v7hze8k@ch.ristopher.com> <87pq0skq1k@ch.ristopher.com> <87ham4do0s.fsf@bzg.ath.cx> <87d2wskogm@ch.ristopher.com> <87622kdkj5.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:38239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz8XN-0007Bg-Qm for emacs-orgmode@gnu.org; Sat, 26 Jan 2013 11:23:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tz8XL-0002Df-DI for emacs-orgmode@gnu.org; Sat, 26 Jan 2013 11:23:25 -0500 Received: from ristopher.com ([146.185.21.93]:52510 helo=saturn.ch.ristopher.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tz8XL-0002DJ-45 for emacs-orgmode@gnu.org; Sat, 26 Jan 2013 11:23:23 -0500 In-Reply-To: <87622kdkj5.fsf@bzg.ath.cx> (Bastien's message of "Sat, 26 Jan 2013 16:35:42 +0100") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Bastien writes: > Generating autoloads for tex-jp.el... > forward-sexp: Scan error: "Unbalanced parentheses", 8785, 28213 > > When compiling. I have no idea. emacs-24 (GNU Emacs 24.2.90.1) works fine. > I'm off for the week-end, I'll dig this further later on next week. Thank you very much. Here is a minimal recipe that produces the effects of the bug. (progn (let ((TeX-master t)) ;; require external TeX library (defvar TeX-master nil) (defun TeX-func () TeX-master) ;; do stuff with TeX library ;; ... ) ;; now do other stuff with TeX library (TeX-func)) Christopher