$OpenBSD: patch-src_e2_output_c,v 1.6 2015/09/20 08:39:35 landry Exp $

Don't include ctype, _C macro conflicts. Use glib func instead.

--- src/e2_output.c.orig	Sun Nov 17 12:05:54 2013
+++ src/e2_output.c	Sun Sep 20 09:26:07 2015
@@ -38,7 +38,6 @@ ToDo
 #include "emelfm2.h"
 #include <string.h>
 #include <pthread.h>
-#include <ctype.h>
 #include "e2_output.h"
 #include "e2_dialog.h"
 //for pane-text activation
@@ -1605,7 +1604,7 @@ nextchar:
 				break;
 			else if (sepcount > 0 && _e2_output_unistrchr (bounds, sepcount, d) != NULL)
 				break;
-			else if (ispunct ((guchar) d))
+			else if (g_ascii_ispunct ((guchar) d))
 			{
 				if (gtk_text_iter_forward_char (&iter))
 					goto nextchar;
