From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Steven Tamm Newsgroups: gmane.emacs.devel Subject: Re: Emacs 21.3.50.1 (CVS sources) MacOS X tex-mode bug Date: Mon, 17 Jan 2005 20:08:50 -0800 Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1106022436 23919 80.91.229.6 (18 Jan 2005 04:27:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 18 Jan 2005 04:27:16 +0000 (UTC) Cc: YAMAMOTO Mitsuharu , emacs-devel ' Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jan 18 05:27:09 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 1CqkxQ-00028n-00 for ; Tue, 18 Jan 2005 05:27:09 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cql9J-0003Ep-DY for ged-emacs-devel@m.gmane.org; Mon, 17 Jan 2005 23:39:25 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Cql5u-0001LV-DL for emacs-devel@gnu.org; Mon, 17 Jan 2005 23:35:54 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Cql5p-0001K8-B7 for emacs-devel@gnu.org; Mon, 17 Jan 2005 23:35:49 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Cql4W-0000l2-SW for emacs-devel@gnu.org; Mon, 17 Jan 2005 23:34:28 -0500 Original-Received: from [17.250.248.84] (helo=smtpout.mac.com) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Cqkfm-0004GX-VH for emacs-devel@gnu.org; Mon, 17 Jan 2005 23:08:55 -0500 Original-Received: from mac.com (smtpin08-en2 [10.13.10.153]) by smtpout.mac.com (8.12.6/MantshX 2.0) with ESMTP id j0I48ree000919; Mon, 17 Jan 2005 20:08:53 -0800 (PST) Original-Received: from [10.0.1.201] (c-24-4-203-197.client.comcast.net [24.4.203.197]) (authenticated bits=0) by mac.com (Xserve/smtpin08/MantshX 4.0) with ESMTP id j0I48pH1019069; Mon, 17 Jan 2005 20:08:52 -0800 (PST) In-Reply-To: Original-To: Stefan Monnier X-Mailer: Apple Mail (2.619) 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:32313 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:32313 The problem only applied to the carbon build, I believe. The pty's weren't setup correctly when launching from a bundle. My recollection is fuzzy, so it could be something else. -Steven On Jan 17, 2005, at 10:59 AM, Stefan Monnier wrote: >> --- 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