Redraw message window if new lines have been added. */
| 226 | |
| 227 | /* Redraw message window if new lines have been added. */ |
| 228 | void |
| 229 | display_message_window(struct xwindow *wp) |
| 230 | { |
| 231 | set_message_slider(wp); |
| 232 | if (wp->mesg_information->dirty) |
| 233 | redraw_message_window(wp); |
| 234 | } |
| 235 | |
| 236 | /* |
| 237 | * Append a line of text to the message window. Split the line if the |
no test coverage detected