diff --git a/ChangeLog b/ChangeLog index 3ff4a050a..9e99eb540 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-05-03 Vladimir Serbinenko + + * grub-core/normal/term.c (print_ucs4_real): Fix startwidth in dry run. + 2013-05-02 Vladimir Serbinenko Several fixes to ieee1275 and big-endian video. diff --git a/grub-core/normal/term.c b/grub-core/normal/term.c index f9620f6e5..976442382 100644 --- a/grub-core/normal/term.c +++ b/grub-core/normal/term.c @@ -920,8 +920,8 @@ print_ucs4_real (const grub_uint32_t * str, get_maxwidth (term, margin_left, margin_right), - get_startwidth (term, - margin_left), + dry_run ? 0 : get_startwidth (term, + margin_left), contchar, pos, !!contchar); if (visual_len < 0) {