From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: Emacs Mac port Date: Tue, 26 Sep 2017 11:28:45 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: blaine.gmane.org 1506392945 22302 195.159.176.226 (26 Sep 2017 02:29:05 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 26 Sep 2017 02:29:05 +0000 (UTC) User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/22.3 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Sep 26 04:28:58 2017 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dwfcG-0005IL-O4 for ged-emacs-devel@m.gmane.org; Tue, 26 Sep 2017 04:28:56 +0200 Original-Received: from localhost ([::1]:45256 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dwfcO-0005z0-7E for ged-emacs-devel@m.gmane.org; Mon, 25 Sep 2017 22:29:04 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:49999) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dwfcG-0005yh-V0 for emacs-devel@gnu.org; Mon, 25 Sep 2017 22:28:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dwfcC-0002Ie-KJ for emacs-devel@gnu.org; Mon, 25 Sep 2017 22:28:56 -0400 Original-Received: from mathmail.math.s.chiba-u.ac.jp ([133.82.132.2]:65016) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dwfcB-0002Gc-U9 for emacs-devel@gnu.org; Mon, 25 Sep 2017 22:28:52 -0400 Original-Received: from fermat1.math.s.chiba-u.ac.jp (fermat [192.168.32.10]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id D2741F08D5 for ; Tue, 26 Sep 2017 11:28:45 +0900 (JST) (envelope-from mituharu@math.s.chiba-u.ac.jp) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 133.82.132.2 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:218794 Archived-At: The first update of the Mac port based on Emacs 25.3 is now available from ftp://ftp.math.s.chiba-u.ac.jp/emacs/emacs-25.3-mac-6.8.tar.gz and Git repository is also available at https://bitbucket.org/mituharu/emacs-mac.git Courageous users are invited to try the `experimental/mac-gui-thread' branch in the above repository. >>>>> On Wed, 13 Sep 2017 12:46:51 +0900, YAMAMOTO Mitsuharu said: > I also created a new branch `experimental/mac-gui-thread' in the > above repository for preparation of multi-thread support in Emacs > 26. The branch itself is still based on Emacs 25 to test this new > design and code on top of a stable basis. > It runs the Lisp REPL in a non-main thread, so the main thread is > dedicated to GUI tasks, which might be requested from multiple Lisp > threads if we switch to version 26. The GUI and Lisp threads run > mostly cooperatively (i.e., do not run simultaneously) except in the > `select' emulation. Note that the variable `main_thread' in > sysdep.c no longer corresponds to the "main thread" in a usual > sense. In addition to the usual configure options for debugging, I'd recommend using "the Main Thread Checker" introduced in Xcode 9 by setting the environment variable DYLD_INSERT_LIBRARIES to /Applications/Xcode.app/Contents/Developer/usr/lib/libMainThreadChecker.dylib If you are using lldb, then you can set it as follows: (lldb) settings set target.env-vars DYLD_INSERT_LIBRARIES=/Applications/Xcode.app/Contents/Developer/usr/lib/libMainThreadChecker.dylib YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp ** Fixed bugs *** Frame parameter `alpha' does not work in tooltip-frame-parameters. *** Switching to/from `fullboth' frame does not preserve tool bar. *** Hourglass (progress indicator) on a dark title bar is invisible. *** Live resize transition animation does not respect internal border. *** Some input methods (e.g., Japanese one) on macOS 10.13 do not recognize Control+Space even if it is unchecked in the system-wide short cut settings. This issue is registered in the Apple Bug Reporter as rdar://33842041, but still open. A workaround is added.