Commit f1d3d958 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

more miscellaneous minor fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2551 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 40e4acf5
Showing with 3 additions and 2 deletions
+3 -2
......@@ -2441,10 +2441,10 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
{
int kbinput;
bool meta_key, func_key, s_or_t, ran_func, finished;
size_t curranswer_len = strlen(curranswer);
size_t curranswer_len;
#ifndef DISABLE_TABCOMP
bool tabbed = FALSE;
/* Whether we've pressed Tab more than once consecutively. */
/* Whether we've pressed Tab. */
#endif
#ifndef NANO_SMALL
char *history = NULL;
......@@ -2455,6 +2455,7 @@ int nanogetstr(bool allow_tabs, const char *buf, const char *curranswer,
#endif
answer = mallocstrcpy(answer, curranswer);
curranswer = strlen(answer);
/* Only put statusbar_x at the end of the string if it's
* uninitialized, if it would be past the end of curranswer, or if
......
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