From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Emacs 21.3.50.1 (CVS sources) MacOS X tex-mode bug Date: Mon, 17 Jan 2005 13:59:01 -0500 Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1105989941 19902 80.91.229.6 (17 Jan 2005 19:25:41 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 17 Jan 2005 19:25:41 +0000 (UTC) Cc: Chip Coldwell , emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jan 17 20:25:30 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CqcVF-0004Z9-00 for ; Mon, 17 Jan 2005 20:25:30 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cqch7-0000uD-6G for ged-emacs-devel@m.gmane.org; Mon, 17 Jan 2005 14:37:45 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Cqcgc-0000j7-3p for emacs-devel@gnu.org; Mon, 17 Jan 2005 14:37:14 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Cqcdx-0008QR-Oe for emacs-devel@gnu.org; Mon, 17 Jan 2005 14:34:31 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cqcdu-0008Cd-MI for emacs-devel@gnu.org; Mon, 17 Jan 2005 14:34:26 -0500 Original-Received: from [132.204.24.67] (helo=mercure.iro.umontreal.ca) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Cqc5h-00084a-S1 for emacs-devel@gnu.org; Mon, 17 Jan 2005 13:59:06 -0500 Original-Received: from hidalgo.iro.umontreal.ca (hidalgo.iro.umontreal.ca [132.204.27.50]) by mercure.iro.umontreal.ca (Postfix) with ESMTP id 88B8E8282A9; Mon, 17 Jan 2005 13:59:05 -0500 (EST) Original-Received: from asado.iro.umontreal.ca (asado.iro.umontreal.ca [132.204.24.84]) by hidalgo.iro.umontreal.ca (Postfix) with ESMTP id 820BF4AC0FA; Mon, 17 Jan 2005 13:59:01 -0500 (EST) Original-Received: by asado.iro.umontreal.ca (Postfix, from userid 20848) id 55B924BB60; Mon, 17 Jan 2005 13:59:01 -0500 (EST) Original-To: Steven Tamm In-Reply-To: (Steven Tamm's message of "Mon, 17 Jan 2005 09:41:01 -0800") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/21.3.50 (gnu/linux) X-DIRO-MailScanner-Information: Please contact the ISP for more information X-DIRO-MailScanner: Found to be clean X-DIRO-MailScanner-SpamCheck: n'est pas un polluriel, SpamAssassin (score=-4.736, requis 5, autolearn=not spam, AWL 0.16, BAYES_00 -4.90) X-MailScanner-From: monnier@iro.umontreal.ca 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: main.gmane.org gmane.emacs.devel:32299 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32299 > --- lisp/term/mac-win.el 30 Dec 2004 02:04:31 -0000 1.30 > +++ lisp/term/mac-win.el 17 Jan 2005 17:40:12 -0000 > @@ -1696,8 +1696,9 @@ > ;; Tell Emacs to use pipes instead of pty's for processes because the > ;; latter sometimes lose characters. Pty support is compiled in since > -;; ange-ftp will not work without it. > -(setq process-connection-type nil) > +;; ange-ftp will not work without it. Fixed with darwin 7 (OS X 10.3). > +(setq process-connection-type > + (not (string-match "-darwin[0-6]\\." system-configuration))) > ;; Assume that fonts are always scalable on the Mac. This sometimes > ;; results in characters with jagged edges. However, without it, BTW, I think I've never noticed the tex-shell problem on my Mac because I build it for X11 so mac-win.el is not loaded (and thus process-connection-type stays t). Shouldn't the process-connection-type be set somewhere else than in mac-win.el. Stefan