From f120db63a34e7e9085d815c872049c9cacbbe971 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Mon, 20 Jun 2022 11:02:14 +0000 Subject: [PATCH] Fix running temacs on Haiku * src/emacs.c (main): Run init_haiku_select at the right place. --- src/emacs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emacs.c b/src/emacs.c index 43b9901e081..236add1157d 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2412,11 +2412,11 @@ Using an Emacs configured with --with-x-toolkit=lucid does not have this problem #if defined WINDOWSNT || defined HAVE_NTGUI globals_of_w32select (); #endif + } #ifdef HAVE_HAIKU - init_haiku_select (); + init_haiku_select (); #endif - } init_charset (); -- 2.39.2