Avoiding two compilation warnings.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5481 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
Benno Schulenberg 2015-12-05 11:38:26 +00:00
parent 26151189ba
commit bb31118fcb
3 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* src/text.c: Fix compilation with --enable-tiny --enable-justify.
* doc/man/{nano.1,rnano.1,nanorc.5}, doc/texinfo/nano.texi:
Update date and version number to match the upcoming release.
* src/files.c, src/winio.c: Avoid two compilation warnings.
2015-12-04 Benno Schulenberg <bensberg@justemail.net>
* src/proto.h: Avoid a compilation warning.

View File

@ -1100,8 +1100,9 @@ void do_insertfile(
break;
} else {
size_t pww_save = openfile->placewewant;
#if !defined(NANO_TINY) || !defined(DISABLE_BROWSER)
functionptrtype func = func_from_key(&i);
#endif
ans = mallocstrcpy(ans, answer);
#ifndef NANO_TINY

View File

@ -43,7 +43,9 @@ static bool disable_cursorpos = FALSE;
static bool seen_wide = FALSE;
/* Whether we've seen a multicolumn character in the current line. */
#ifndef NANO_TINY
static sig_atomic_t sigwinch_counter_save = 0;
#endif
/* Control character compatibility:
*