emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 1054d38bc7: Fix check for window system with toolkit scrollbars


From: Robert Pluim
Subject: master 1054d38bc7: Fix check for window system with toolkit scrollbars
Date: Thu, 16 Jun 2022 03:37:05 -0400 (EDT)

branch: master
commit 1054d38bc7a0280dd0910aff4db0a781512fe85e
Author: Robert Pluim <rpluim@gmail.com>
Commit: Robert Pluim <rpluim@gmail.com>

    Fix check for window system with toolkit scrollbars
    
    * configure.ac (USE_TOOLKIT_SCROLL_BARS): Add missing 'test' to
    condition.  (Bug#55970)
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 5b86e90925..c91b7de322 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3436,7 +3436,7 @@ if test "${with_toolkit_scroll_bars}" != "no"; then
     AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
     USE_TOOLKIT_SCROLL_BARS=yes
   fi
-elif test "${window_system}" != "x11" && "${window_system}" != "none"; then
+elif test "${window_system}" != "x11" && test "${window_system}" != "none"; 
then
   AC_MSG_ERROR(Non-toolkit scroll bars are not implemented for your system)
 fi
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]