]> git.wh0rd.org Git - nano.git/commitdiff
per OBATA Akio's patch with a few tweaks by me, add wnoutrefresh() calls
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 4 Dec 2007 16:38:47 +0000 (16:38 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 4 Dec 2007 16:38:47 +0000 (16:38 +0000)
after reset_(statusbar_)?cursor() calls, to ensure that the cursor is
placed properly when using NetBSD curses

git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_2_0_branch/nano@4185 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/nano.c
src/prompt.c
src/winio.c

index 60a76f8b5fd1ec49fea16a02012e39024afc430e..60dbffa5a70cfd644e91950b0155910e6bbeaa00 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,10 @@ CVS code -
        - Update copyright notices, as Jordi Mallach's copyrights have
          now been assigned to the Free Software Foundation.  Changes to
          doc/man/rnano.1 and doc/man/fr/rnano.1. (DLR)
+       - Add wnoutrefresh() calls after reset_(statusbar_)?cursor()
+         calls, to ensure that the cursor is placed properly when using
+         NetBSD curses.  Changes to main(), get_prompt_string(), and
+         do_replace_highlight(). (OBATA Akio, minor tweaks by DLR)
 - chars.c:
   nstrncasecmp(), mbstrncasecmp()
        - For efficiency, return zero immediately if s1 and s2 point to
index 96d03a2c22d83a343903597125e6ce37b4073ccd..3a10e2af093eda79b6cfa6b412d8b9f1e39b5fc9 100644 (file)
@@ -2265,6 +2265,7 @@ int main(int argc, char **argv)
 
        /* Make sure the cursor is in the edit window. */
        reset_cursor();
+       wnoutrefresh(edit);
 
 #ifndef NANO_TINY
        if (!jump_buf_main) {
index 01e2f96c05f7972310292a2c62bd8349576b9f77..2f6ad175ab7885153ef43a1aa20e98ede46a8eab 100644 (file)
@@ -1116,6 +1116,7 @@ int get_prompt_string(bool allow_tabs,
 #endif
 
        reset_statusbar_cursor();
+       wnoutrefresh(bottomwin);
     }
 
 #ifndef NANO_TINY
index 7e8a3dc5d1205a41d8a98f151939523602b71b25..d202735b831717c1cdc74c96a58fe4d45bf57f6b 100644 (file)
@@ -3260,6 +3260,7 @@ void do_replace_highlight(bool highlight, const char *word)
        y--;
 
     reset_cursor();
+    wnoutrefresh(edit);
 
     if (highlight)
        wattron(edit, reverse_attr);