nano

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

commit db57ad757f990a3caf0358fa896d6462570dbf38
parent 5745c0a11f225ca3485ebf7ebd51b0934ae6df28
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sun, 31 Jul 2005 20:57:38 +0000

comment fix


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

Diffstat:
Msrc/search.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/search.c b/src/search.c @@ -152,7 +152,7 @@ int search_init(bool replacing, bool use_answer) char *disp = display_string(last_search, 0, COLS / 3, FALSE); buf = charalloc(strlen(disp) + 7); - /* We use COLS / 3 here because we need to see more on the + /* We use (COLS / 3) here because we need to see more on the * line. */ sprintf(buf, " [%s%s]", disp, strlenpt(last_search) > COLS / 3 ? "..." : "");