From 72a840b0b64c1c9da32f8d945edea70a9322346b Mon Sep 17 00:00:00 2001
From: deuce <>
Date: Tue, 1 Jun 2004 05:07:10 +0000
Subject: [PATCH] From the XCurses manpage, regarding mouse functions: "ALL 
 DESCRIPTIONS  ARE  GUESSES.  I DON'T KNOW ANYONE WHO KNOWS EXACTLY WHAT THESE
 FUNCTIONS DO!"

Right, like I'm going to support this?
---
 src/uifc/uifc32.c | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/uifc/uifc32.c b/src/uifc/uifc32.c
index e37ed75aa8..724faa427b 100644
--- a/src/uifc/uifc32.c
+++ b/src/uifc/uifc32.c
@@ -278,10 +278,14 @@ int uifcini32(uifcapi_t* uifcapi)
 		api->esc_delay=25;
 
 #ifdef PDCURSES
-	if(mouse_set(BUTTON1_CLICKED|BUTTON3_CLICKED)==0)
-		api->mode|=UIFC_MOUSE;
-	else
-		mouse_set(0);
+/*	
+ * "ALL  DESCRIPTIONS  ARE  GUESSES.  I DON'T KNOW ANYONE WHO KNOWS EXACTLY WHAT THESE FUNCTIONS DO!"
+ *
+ * 	if(mouse_set(BUTTON1_CLICKED|BUTTON3_CLICKED)==0)
+ *		api->mode|=UIFC_MOUSE;
+ *	else
+ *		mouse_set(0);
+ */
 #endif
 #ifdef __unix__
 	initciowrap(api->mode);
-- 
GitLab