summaryrefslogtreecommitdiff
path: root/devel/anjuta/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'devel/anjuta/patches/patch-ab')
-rw-r--r--devel/anjuta/patches/patch-ab24
1 files changed, 24 insertions, 0 deletions
diff --git a/devel/anjuta/patches/patch-ab b/devel/anjuta/patches/patch-ab
new file mode 100644
index 00000000000..6417cefa9ee
--- /dev/null
+++ b/devel/anjuta/patches/patch-ab
@@ -0,0 +1,24 @@
+$NetBSD: patch-ab,v 1.5 2004/06/28 12:32:42 kristerw Exp $
+
+--- src/breakpoints.c.orig Mon Jun 28 14:11:34 2004
++++ src/breakpoints.c Mon Jun 28 14:12:49 2004
+@@ -1409,8 +1409,10 @@
+ ptr1 = strchr (ptr, '\n');
+ if (ptr1)
+ {
+- *ptr1++ = '\0';
+ const gchar condition_prefix[] = "\tstop only if ";
++ const gchar ignore_prefix[] = "\tignore
++next ";
++ *ptr1++ = '\0';
+ if (g_str_has_prefix (ptr1, condition_prefix))
+ {
+ ptr1 += sizeof(condition_prefix) - 1;
+@@ -1418,7 +1420,6 @@
+ ptr1 = strchr (cond, '\n');
+ if (ptr1) *ptr1++ = '\0';
+ }
+- const gchar ignore_prefix[] = "\tignore next ";
+ if (g_str_has_prefix (ptr1, ignore_prefix))
+ {
+ ptr1 += sizeof(ignore_prefix) - 1;