From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: emacs for pure Gtk3 Date: Tue, 28 Apr 2020 10:27:58 +0300 Message-ID: <83o8rc2hoh.fsf@gnu.org> References: <1588043944.2848.14@gmail.com> Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="88806"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Jeff Walsh Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Apr 28 09:47:02 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jTKxJ-000N1M-QD for ged-emacs-devel@m.gmane-mx.org; Tue, 28 Apr 2020 09:47:01 +0200 Original-Received: from localhost ([::1]:44908 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTKxI-0003D1-Kh for ged-emacs-devel@m.gmane-mx.org; Tue, 28 Apr 2020 03:47:00 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:43926) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTKv1-00080w-GJ for emacs-devel@gnu.org; Tue, 28 Apr 2020 03:46:08 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:53122) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jTKfF-00013q-7V; Tue, 28 Apr 2020 03:28:21 -0400 Original-Received: from [176.228.60.248] (port=3893 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jTKfD-0006lc-Ug; Tue, 28 Apr 2020 03:28:20 -0400 In-Reply-To: <1588043944.2848.14@gmail.com> (message from Jeff Walsh on Tue, 28 Apr 2020 13:19:04 +1000) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:248004 Archived-At: > Date: Tue, 28 Apr 2020 13:19:04 +1000 > From: Jeff Walsh > Cc: emacs-devel@gnu.org > > > Pgtk emacs supports X window system too through Gtk library. > > It can handle Wayland, X window system, and TTY in the same session. > > But segmentation fault may occur when running on X and Wayland > > in the same session. > > I guess those segfaults need to be fixed, because having a GUI Emacs > that can only run on Wayland would be a limitation that users might be > unhappy about? > > it will run on wayland or xwayland or X11 from the same binary, but not on wayland and X11 concurrently. > > I'm not sure of a use-case for this, but I'm hoping someone is able to provide one. The use case is running Emacs on a system with Wayland, and opening a frame on a remote host where there's no Wayland and only "normal" X frames can be used. > > I don't know about Lisp threads. I have never supported it explicitly. > > Pgtk emacs may not support it. > > Well, for starters see if test/src/thread-tests.el runs and succeeds > in your Pgtk build. > > I get: > > make lisp/thread-tests make[1]: Entering directory '/home/fejfighter/dev/emacs-gtk/test' GEN > lisp/thread-tests.log Running 3 tests (2020-04-28 12:52:55+1000, selector `(not (tag :unstable))') skipped 1/3 > thread-tests-list-threads-error-when-not-configured (0.000133 sec) passed 2/3 > thread-tests-thread-list-send-error (0.000488 sec) passed 3/3 thread-tests-thread-list-show-backtrace > (0.014913 sec) Ran 3 tests, 2 results as expected, 0 unexpected, 1 skipped (2020-04-28 12:52:55+1000, > 0.015803 sec) 1 skipped results: SKIPPED thread-tests-list-threads-error-when-not-configured make[1]: > Leaving directory '/home/fejfighter/dev/emacs-gtk/test' > > which matches a master build checkout from e49d3a45cd4a0554aa98c45f0976ed513c500951 (approx 1300 > Aus EST) That's a different test. I meant src/thread-tests, not lisp/thread-tests. Thanks.