pike.git/
CHANGES
Branch:
Tag:
Non-build tags
All tags
No tags
2003-09-11
2003-09-11 19:24:23 by Martin Stjernholm <mast@lysator.liu.se>
635e21aa9f82a802aa9bcea0c3d14e9b5c33e226 (
11
lines) (+
10
/-
1
)
[
Show
|
Annotate
]
Branch:
7.4
*** empty log message ***
Rev: CHANGES:1.89
40:
o Bugfix for handling of NUL in %{%} in sprintf. o Added kludge to avoid race condition in syslog(2) in glibc/linuxthreads.
+
o Bugfix when iterators are used in foreach. They are now incremented
+
after the loop instead of before it. This can have compatibility
+
effects in code that uses iterators explicitly. E.g:
+
String.Iterator iter = String.Iterator ("foo");
+
foreach (iter; int ind; int val)
+
werror ("%d %d\n", ind, iter->index());
+
This will now write "0 0", "1 1", etc. In previous versions of 7.4
+
it wrote "0 1", "1 2", etc since the iterator has already been
+
incremented to point to the next element.
-
+
Changes since Pike 7.4.10: ----------------------------------------------------------------------