summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2001-04-26 14:57:13 +0000
committerOwen Taylor <otaylor@src.gnome.org>2001-04-26 14:57:13 +0000
commitfb5f7106dc87b995ee282a207a8f6237ada042b3 (patch)
tree9d540eecc58f96301db2697f81194b84c10fdb1f
parent604828e8d5c8f792d0b3c88c080c8e9057aa6258 (diff)
downloadgdk-pixbuf-fb5f7106dc87b995ee282a207a8f6237ada042b3.tar.gz
Fix optimization that was correct for the use here, but completely
Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com> * gtk/gtkentry.c (strstr_len): Fix optimization that was correct for the use here, but completely incorrect in general.
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-06
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-26
-rw-r--r--ChangeLog.pre-2-46
-rw-r--r--ChangeLog.pre-2-66
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--gtk/gtkentry.c2
8 files changed, 43 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 57bfe229b..0ca83d2ef 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+Thu Apr 26 10:54:50 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkentry.c (strstr_len): Fix optimization that
+ was correct for the use here, but completely incorrect
+ in general.
+
Thu Apr 26 10:40:41 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwindow.h: Remove deprecation of gtk_window_set_default_size()
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c
index 84af9d3c7..644c4c4c5 100644
--- a/gtk/gtkentry.c
+++ b/gtk/gtkentry.c
@@ -1724,7 +1724,7 @@ strstr_len (const char *haystack,
return (char *)p;
next:
- p += needle_len;
+ p++;
}
}