nano

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

commit 1dc298d28b523a33f055244896776f30ff71f443
parent 98ffb642f376f77243a8ab921d6cdee0cbb0d349
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Fri, 17 Jul 2015 21:06:46 +0000

Removing an earlier attempt at making M-W work at startup.


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

Diffstat:
MChangeLog | 4++++
Msrc/files.c | 2--
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -4,6 +4,10 @@ a directory is specified. This fixes Savannah bug #45383 reported by Mike Frysinger, and also Savannah bug #27839 (which is an echo from Debian bug #551717 reported by Paul Wise). + * src/files.c (load_history): Remove an earlier attempt to make M-W + work at startup. It no longer worked because the assigned value gets + overwritten by a later initialization of 'last_search' to the empty + string. Found through the use of valgrind. 2015-07-17 Mike Frysinger <vapier@gentoo.org> * src/browser.c (browser_refresh): Use the proper type (off_t) for diff --git a/src/files.c b/src/files.c @@ -3023,8 +3023,6 @@ void load_history(void) fclose(hist); free(line); - if (search_history->prev != NULL) - last_search = mallocstrcpy(NULL, search_history->prev->data); } free(nanohist); free(legacyhist);