Commit 1bf8f5e9 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

- winio.c:edit_add() - Little fixes to let color highlights not bleed onto the next line

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@974 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 4 deletions
+4 -4
......@@ -41,6 +41,8 @@ CVS code -
- gettextized a pair of strings.
bottombars()
- Get rid of that annoying reversed line when color is on! :)
edit_add()
- Little fixes to let color highlights not bleed onto the next line.
- m4/gettext.m4:
- Back down to 1.1.3 version.
- faq.html:
......
......@@ -804,12 +804,10 @@ void edit_add(filestruct * fileptr, int yval, int start, int virt_cur_x,
wattron(edit, A_BOLD);
wattron(edit, COLOR_PAIR(tmpcolor->pairnum));
if (regmatches[0].rm_eo - regmatches[0].rm_so
+ k <= COLS)
if (regmatches[0].rm_eo + k <= COLS)
paintlen = regmatches[0].rm_eo - regmatches[0].rm_so;
else
paintlen = COLS - (regmatches[0].rm_eo
- regmatches[0].rm_so);
paintlen = COLS - k - regmatches[0].rm_so - 1;
mvwaddnstr(edit, yval, regmatches[0].rm_so + k,
&fileptr->data[k + regmatches[0].rm_so],
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment