comparison src/message.c @ 870:591fb953a280

updated for version 7.0g05
author vimboss
date Sat, 06 May 2006 21:38:18 +0000
parents 8cd729851562
children 48775ea99f24
comparison
equal deleted inserted replaced
869:31bff9be0a77 870:591fb953a280
2593 } 2593 }
2594 else 2594 else
2595 { 2595 {
2596 /* redisplay all lines */ 2596 /* redisplay all lines */
2597 screenclear(); 2597 screenclear();
2598 for (i = 0; i < Rows - 1; ++i) 2598 for (i = 0; mp != NULL && i < Rows - 1; ++i)
2599 {
2599 mp = disp_sb_line(i, mp); 2600 mp = disp_sb_line(i, mp);
2601 ++msg_scrolled;
2602 }
2600 } 2603 }
2601 scroll = 0; 2604 scroll = 0;
2602 } 2605 }
2603 } 2606 }
2604 else 2607 else