nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 443a766fe292c648fe267674d3dac72fcc8b3a43
parent fa82853aea8a581b6b9ffd088f710a852f444a8d
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 14 Jul 2005 23:06:22 +0000

more miscellaneous breakage fixes


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

Diffstat:
Msrc/files.c | 8++++++++
Msrc/nano.c | 2+-
Msrc/winio.c | 2+-
3 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/src/files.c b/src/files.c @@ -230,7 +230,15 @@ void open_buffer(const char *filename) /* Update the screen to account for the current buffer. */ void display_buffer(void) { + /* Update the titlebar, since the filename may have changed. */ titlebar(NULL); + +#ifdef ENABLE_COLOR + /* Update the buffer's associated colors, if applicable. */ + color_update(); +#endif + + /* Update the edit window. */ edit_refresh(); } diff --git a/src/nano.c b/src/nano.c @@ -191,7 +191,7 @@ void renumber(filestruct *fileptr) assert(fileptr != fileptr->next); for (; fileptr != NULL; fileptr = fileptr->next) - fileptr->lineno = ++line; + fileptr->lineno = line++; } /* Partition a filestruct so it begins at (top, top_x) and ends at (bot, diff --git a/src/winio.c b/src/winio.c @@ -3510,7 +3510,7 @@ int need_vertical_update(size_t old_pww) * two is the current line at either time. */ void edit_scroll(updown direction, int nlines) { - filestruct *foo; + const filestruct *foo; int i, scroll_rows = 0; /* Scrolling less than one line or more than editwinrows lines is