diff --git a/changes4.3.html b/changes4.3.html
index a63437f6b..1541f3801 100644
--- a/changes4.3.html
+++ b/changes4.3.html
@@ -16,6 +16,8 @@
Yap-4.3.23:
+ - FIXED: bug in waking up attached variables (summer@mail.sc.cninfo.net).
+ - FIXED: extra manual bugs (Maleeha Qazi).
- UPDATE: updated
configure.in
for smooth YAP compilation on MacOS X 10.2.
- FIXED:
rint
is not truncate/1
(Paulo Moura).
- FIXED: recent change broke debugger help message (Nuno Fonseca).
diff --git a/pl/corout.yap b/pl/corout.yap
index ccd3b4647..b23c9e61b 100644
--- a/pl/corout.yap
+++ b/pl/corout.yap
@@ -108,7 +108,7 @@
'$redo_ground'(Done, X, Goal).
'$execute_woken_system_goal'('$att_do'(V,New), _) :-
% make sure we are not trying to wake up again a bound variable.
- ( '$att_bound'(V) -> attributes:woken_att_do(V,New) ; true ).
+ ( '$att_bound'(V) -> true ; attributes:woken_att_do(V,New) ).
freeze(V, G) :-
var(V), !,