diff --git a/CHANGES b/CHANGES
index bf4dc8edc482fc9e58d31211e5eed75ad3f65a83..19008abb2c62859f2114f329e60b1827a2fce66f 100644
--- a/CHANGES
+++ b/CHANGES
@@ -139,6 +139,13 @@ o The && operator changed, when doing A && B, and A is false, keep A
 
 o Fixed symbol resolution with deep inherits and mixins.
 
+o Added multi-character character constants.
+
+  'ILBM' is equivalent to (('I'<<24)|('L'<<16)|('B'<<8)|'M').
+
+  Unlike how it works in some C compilers the native byte order is
+  never relevant.
+
 
 New preprocessor features
 -------------------------