--- rxvt-unicode/src/rxvtutil.h 2006/01/12 00:35:39 1.17 +++ rxvt-unicode/src/rxvtutil.h 2006/01/17 16:06:48 1.18 @@ -258,14 +258,14 @@ void erase (iterator first, iterator last) { if (last != first) { - memmove (first, last, (end ()-last)*sizeof (T)); + memmove (first, last, (end () - last) * sizeof (T)); _last -= last - first; } } void erase (iterator pos) { if (pos != end ()) { - memmove (pos, pos+1, (end ()- (pos+1))*sizeof (T)); + memmove (pos, pos+1, (end () - (pos+1)) * sizeof (T)); --_last; } }