total_update()
- Simplify to call clearok(TRUE) and wrefresh() on edit, which
updates the entire screen in fewer function calls. (DLR)
+ - When using slang, use SLsmg_touch_screen() and SLsmg_refresh()
+ to update the screen, as the curses method will leave some
+ windows cleared without properly updating them. (DLR)
do_replace_highlight()
- Use waddch() instead of waddstr() to display a space when we
have a zero-length regex. (DLR)
void total_update(void)
{
+#ifdef USE_SLANG
+ /* Slang curses emulation brain damage, part 3: If we just do what
+ * curses does here, it'll leave some windows cleared without
+ * updating them properly. */
+ SLsmg_touch_screen();
+ SLsmg_refresh();
+#else
clearok(edit, TRUE);
wrefresh(edit);
+#endif
}
void total_refresh(void)