1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-28 10:08:24 +00:00
freebsd-ports/graphics/dia/files/patch-objects::GRAFCET::boolequation.c
Joe Marcus Clarke a5c0c3f956 Update to 0.91.
2003-04-04 07:21:03 +00:00

21 lines
483 B
C

--- objects/GRAFCET/boolequation.c.orig Sun Oct 6 14:55:22 2002
+++ objects/GRAFCET/boolequation.c Mon Mar 17 13:56:09 2003
@@ -58,7 +58,7 @@
/* utility */
-inline static gboolean isspecial(gunichar c)
+inline static gboolean dia_isspecial(gunichar c)
{
switch (c) {
case '!':
@@ -136,7 +136,7 @@
gchar *p1;
c = g_utf8_get_char(*str);
p1 = g_utf8_next_char(*str);
- if (isspecial(c)) break;
+ if (dia_isspecial(c)) break;
*str = p1;
}